Ordering Guest Book Comments

Permalink 2 users found helpful
How do I change the guest book comments so the latest ones appear at the top of the page rather than the bottom?

 
jelthure replied on at Permalink Reply
jelthure
open up the view file and go to line #59, then change this:
$posts = $controller->getEntries();


to:

$posts = $controller->getEntries('DESC');


make sure you copy the view file to your /blocks/guestbook/ folder from the concrete folder if you haven't already then edit the new copy
aspen replied on at Permalink Reply
Thanks! Worked great.