Is there a PAL for displaying a list of the most popular products based on rating rather than just the "most viewed" products? in other words, a "top rated" rather than a "top viewed"? a "lowest rated" would also be nice.
if ( $Globals['ratingspal'] == "yes" ) {
// Lets get the Most Popular Ads
$query = "SELECT cat,id,title,views FROM {$Globals['rp_db_prefix']}products ORDER BY views DESC LIMIT {$Globals['mostpoppal']}";