|
Most viewed is highest rated the query just needs to be altered
Line 150 of index.php is this
$query = "SELECT cat,id,title,views FROM {$Globals['rp_db_prefix']}products ORDER BY views DESC LIMIT {$Globals['mostpoppal']}";
change to this
$query = "SELECT cat,id,title,views,rating FROM {$Globals['rp_db_prefix']}products ORDER BY rating,views DESC LIMIT {$Globals['mostpoppal']}";
Top posters even though there is a sidebar switch has not been added to 2.9 and will most likely make it into 3.0
|