top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to add review list on product page of Magento?

+3 votes
361 views
How to add review list on product page of Magento?
posted Jul 28, 2015 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

To Add Review List on mageto product page we have to do below few step

First of all we need to open catalog.xml in Layout folder of used design theme and then we have to add

below code in catalog_product_view. section

<block type="review/product_view_list" name="product.info.product_additional_data" as="reviews" template="review/product/view/list.phtml"/>

and then next step is to just put a single line of code in file catalog/product/view.phtml in template

 <?php echo $this->getChildHtml('reviews') ?>

after that must refresh cache management through admin section
That all the story of adding review list on magento product page

answer Dec 14, 2015 by Manikandan J
...