Skip to main content

Posts

Showing posts from July 26, 2016

How To Display Product Reviews on Product Page in a Magento Theme

To show the review form and product reviews on product page in Magento Theme you need to edit catalog.xml  found here  app/design/frontend/default/YourTheme/layout/catalog.xml You need to find  catalog_product_view  class. Inside this reference add the following code: 1 2 <block type = "review/product_view_list" name = "product.info.product_additional_data" as = "product_review" template = "review/product/view/list.phtml" > <block type = "review/form" name = "product.review.form" as = "review_form" /> </block > Finally, you need to add the following line of code on the product page in app/design/frontend/default/YourTheme/template/catalog/product/view.phtml  at appropriate place. 1 <?php echo $this -> getChildHtml ( 'product_review' ) ?> I hope this will help you showing product reviews easily. Please let us know your questions if you face any troubl

How To Display Product Reviews on Product Page in a Magento Theme

To show the review form and product reviews on product page in Magento Theme you need to edit catalog.xml  found here  app/design/frontend/default/YourTheme/layout/catalog.xml You need to find  catalog_product_view  class. Inside this reference add the following code: 1 2 <block type = "review/product_view_list" name = "product.info.product_additional_data" as = "product_review" template = "review/product/view/list.phtml" > <block type = "review/form" name = "product.review.form" as = "review_form" /> </block > Finally, you need to add the following line of code on the product page in app/design/frontend/default/YourTheme/template/catalog/product/view.phtml  at appropriate place. 1 <?php echo $this -> getChildHtml ( 'product_review' ) ?> I hope this will help you showing product reviews easily. Please let us know your questions if you face any troubl

How To Display Product Reviews on Product Page in a Magento Theme

To show the review form and product reviews on product page in Magento Theme you need to edit catalog.xml  found here  app/design/frontend/default/YourTheme/layout/catalog.xml You need to find  catalog_product_view  class. Inside this reference add the following code: 1 2 <block type = "review/product_view_list" name = "product.info.product_additional_data" as = "product_review" template = "review/product/view/list.phtml" > <block type = "review/form" name = "product.review.form" as = "review_form" /> </block > Finally, you need to add the following line of code on the product page in app/design/frontend/default/YourTheme/template/catalog/product/view.phtml  at appropriate place. 1 <?php echo $this -> getChildHtml ( 'product_review' ) ?> I hope this will help you showing product reviews easily. Please let us know your questions if you face any troubl