Hello,
How could I limit the display of Top Rated site to site with 3 or more stars? As it is site with a fraction of a star is top rated and I do not think it is right.
Thank you,
Hello,
How could I limit the display of Top Rated site to site with 3 or more stars? As it is site with a fraction of a star is top rated and I do not think it is right.
Thank you,
open link.class.php.
go to function DisplayTopRatedListing().
find the line
and change it toPHP Code:$this->query .= ") and suspended = 0 order by rating desc";
PHP Code:$this->query .= ") and suspended = 0 and rating >= 3 order by rating desc";
Thank you
by the way dody, this should be included in the next patch. i had links that werent even rated in the top rated page.