Quote:
Originally Posted by Ted S
Pop open productreviews.php and about a third of the way down is the ranking routine. You can manually change the default.
|
Awesome just for everyones elses reference its line 139/140
Code:
// sort up or down
$sortorder = strtolower($sortorder);
if ($sortorder != 'asc')
{
$sortorder = 'asc';
$oppositesort = 'desc';
Change the $sortorder to 'asc' like we have
Thanks Ted