Monday, June 22, 2015

Display Reviews Starts on Product listing page Magento

hi guys if you want to display reviews rating stars on product listing page or anywhere else you will need up the following code.

<?php
$storeId = Mage::app()->getStore()->getId();
$summaryData = Mage::getModel('review/review_summary')->setStoreId($storeId)  ->load($_product->getId());
?>
<div class="ratings" style="text-align: center;">
        <div class="rating-box">
            <div class="rating" style="width:<?php echo $summaryData['rating_summary']; ?>%"></div>          
         </div>
</div>



Just you need to copy and paste above code to your program and you are done after placing this code you might need to delete cache of magento which is under var/cache.

if you need any other help or facing any issue please comment i will get back to you soon with you reply.


Related Posts:

  • can not login to magento after installation Hi guys if you can not login to magento admin panel after installation it's not an issue. All what you need to do is you will have to modify up a file of magento. Go to: app\code\core\Mage\Core\Model\Session\Abstr… Read More
  • Common welth bank zencart plugin This module will help you to integrate common welth bank gateway in your zencart store. After installing This module go to modules -> payment and edit cc via common welth bank. now you nedd do this Enable MIGS Payment M… Read More
  • Paypal Error (35) error 14094410: SSLV3 zencart If you are using zencart 1.5.1 and payment getway as paypal then you might get a error message Paypal Error (35) error 14094410: SSLV3. This is acctually because of update from paypal you can see the SSLV3 paypal update her… Read More
  • Important Command Ado.Net With the release of the .NET Framework, Microsoft introduced a new data access model, called ADO.NET.The five major objects in ADO.NET are: Obects Description Connection The Connection object is responsible for establishing… Read More
  • [Solved] How To Import Export Product in Magento? Well i had scenario that i have upload all the product and categories on my local host Magento store now what i had to is to make the website live and i had configured it live but the challenge came to me is i have to upload… Read More

0 comments:

Post a Comment