Magento 2 Admin – How to Disable Reviews

adminmagento2modulereview

I'm trying to disable the Magento 2 product reviews feature.
I tried Disabling the Module at the Magento 2 admin Stores\Advanced\Advanced\Magento_Review but the reviews tab on each product is still there.
Is there any way to disable it?
I know for sure that we could disable it in Magento 1.

Best Answer

Use command line option instead:

php bin/magento module:disable --clear-static-content Magento_Review

If you want to flush the cache:

php bin/magento cache:flush

(Run it from root of your Magento 2 dir)

Related Topic