2
votes

I am creating custom module for customer review so I need to delete the Magento customer review functionality from product view page. There is any XML code which don't show the Magento customer review on product view page.

3
Have you tried anything?Dushyant Joshi
I have just tried the xml code <remove name="customer.review"/>Vivacity InfoTech
I want to delete it by custom module from xml code. Any way to delete the magento customer review from magentoVivacity InfoTech
please show the review xml code and custom module layout xml codeAmit Bera
<catalog_product_view> <remove name="customer_review"/> <reference name="product.info"> <block type="testimonial/monblock" name="testimonial.block" as="additional" template="testimonial/viewMore.phtml"> <action method="addToParentGroup"><group>detailed_info</group></action> <action method="setTitle" translate="value"> <value>Review</value></action> </block> </reference> </catalog_product_view>Vivacity InfoTech

3 Answers

0
votes

try this code i have already used...

<catalog_product_view ranslate="label">
     <remove name="product.reviews"/>
 </catalog_product_view>
0
votes

Go to your theme folder> template> catalog> product> open view.phtml then just find the code in this page:<?php echo $this->getReviewsSummaryHtml($_product, 'default', false)?> Now remove the code and check. I think it solve your issue.

0
votes

You do not need any xml code to remove customer review block from product view page. Go to System > Configuration > Advanced then look for Mage_Review and disable it.