PDA

View Full Version : Is there a way to reverse the sort order of the FAQ plugin from Desc to Asc



Pete Young
November 7, 2017, 11:53 AM
As in the title is there a way to reverse the sort order of the FAQ plugin from Desc to Asc so the display from oldest date down to the newest date ?

Bahram Soltanirad
November 7, 2017, 12:13 PM
Go to FAQ folder and edit rlFAQs.class.php
Find:

$sql .= "ORDER BY `Date` DESC ";
Change to:

$sql .= "ORDER BY `Date` ASC ";

Pete Young
November 7, 2017, 10:47 PM
Thanks Bahram