Rating showing twice on product pages in Magento
We came across an issue recently, where the customer’s product pages review section was showing the rating stars twice. Here is the quick fix .
Just goto the phpmyadmin and run this SQL query,
[php]
TRUNCATE `rating_option_vote` ;
TRUNCATE `rating_option_vote_aggregated` ;
[/php]