HI there are some times we need to make the own list pages of products . in that the review doesnot show on them . To show reviews on them use below code
1) if you intend to display the average rating of each product, add this helper method inside the page(like list.phtml):
2) Get the product Review anywhere in magento
3) Get the Review Count of a product in any page like list.phtml
1) if you intend to display the average rating of each product, add this helper method inside the page(like list.phtml):
<?php$storeId = Mage::app()->getStore()->getId();$summaryData = Mage::getModel('review/review_summary')->setStoreId($storeId) ->load($_product->getId());?> // Rating Percentage showing of a product <div class="rating">(<?php echo $summaryData['rating_summary']; ?>%)</div> |
$_reviews->addStoreFilter( Mage::app()->getStore()->getId() )
<?php endif;?> |
?> |