0
Hi, great component. My customer has a question, on the Songs page, all of the songs are sorted in album order. Is there any way I can sort the songs in alphabetical order? Easily?
Thanks
Dean
Thanks
Dean
Responses (2)
-
Accepted Answer
0yes... if you know some mysql
on file /components/com_muscol/models/songs.php line 71
there is the ORDER STATEMENT for the mysql query:
' ORDER BY al.year, al.month, al.id, s.disc_num,s.num '
just add a "s.name" at the beginning:
' ORDER BY s.name, al.year, al.month, al.id, s.disc_num,s.num '
simple as that
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »