Post Star Rating: Removing stars from pages and feeds…
-
To remove the voting stars from feeds and pages, open post-star-rating.php and change the function
function PSR_show_voting_stars_filter($text) { global $PSR; return $text . $PSR->getVotingStars(); }
to
function PSR_show_voting_stars_filter($text) { global $PSR; if ( !is_feed() && !is_page() ) return $text . $PSR->getVotingStars(); }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Post Star Rating: Removing stars from pages and feeds…’ is closed to new replies.