Magento CE 1.9.0.1 – Disable Product Reviews but Keep Rating Enabled

ce-1.9.0.1review

I would like to disable the review option on product page in magento CE 1.9.0.1 but like to keep rating feature.
I tried "Go to System>Configuration>Advance>mage_review >disable, but it then disables the rating also.

Also disabling mage_review takes off the Reviews and Rating tabs under catalog, which can be understood. But Ratings goes off with it too.

I would like to know the workaround over this. Thanks

Best Answer

It seems that when you disable Mage_Review then Mage_Rating also gets disabled.

You can manually remove the review form by editing the following template file:

app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/review/form.phtml

The review form is submitted to postAction() of class Mage_Review_ProductController (app/code/core/Mage/Review/controllers/ProductController.php).

Related Topic