Sort Song list in alphabetical order

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
Responses (2)
  • Accepted Answer

    Monday, July 12 2010, 04:12 PM - #Permalink
    0
    yes... 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 :)
    The reply is currently minimized Show
  • Accepted Answer

    Monday, July 12 2010, 08:00 PM - #Permalink
    0
    Thanks, that works great.
    The reply is currently minimized Show
Your Reply