– CLick on “add media”
– Select your song
– Choose on the right side “link to mediafile”
– insert into page
that should do it
I did not test it, but you can try this..
Replace
(start >= '{$start}' AND start < '{$end}')
OR (end >= '{$start}' AND end > '{$end}')
OR (start <= '{$start}' AND end >= '{$end}')
OR (start < '{$end}' AND (repeat_freq > 0 AND repeat_end >= '{$start}'))
With
(start >= '{$start}' AND start <= '{$end}')
OR (end >= '{$start}' AND end > '{$end}')
OR (start <= '{$start}' AND end >= '{$end}')
OR (start < '{$end}' AND (repeat_freq > 0 AND repeat_end >= '{$start}'))
Be sure you have a backup 🙂