Grid view order

0
I am using grid view for my site, but it's displaying the releases from oldest to newest, how can I switch so it's from newest to oldest. (Release date, not date added).

Thank you for your assistance.
Responses (2)
  • Accepted Answer

    Tuesday, November 29 2011, 04:49 PM - #Permalink
    0
    you code a littel bit, don't you...?
    it's on file /models/artist.php at around line 214, you see this:

    ORDER BY year,month

    just change the MySQL order to

    ORDER BY year DESC,month DESC
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 05 2011, 06:09 AM - #Permalink
    0
    I code a very little bit, my username says it all ;)

    This worked! Thank you!
    The reply is currently minimized Show
Your Reply