Hey all,
I'm trying to remove Magento 2.2 Magento_Review module, but can't find anywhere to remove it from the backend.
How can it be done?
Thanks!
Hi @AsafYotpo,
I guess you'll find this link useful: http://devdocs.magento.com/guides/v2.2/config-guide/config/disable-module-output.html
Before Release of Magento 2.2 version you can disable module from
Stores -> Configuration -> Advanced -> Advanced
After open this page in backend, Just set Disable from dropdown value besided in module name and doing save will disable your module.
After Release of Magento 2.2.* version Advanced Option will remove so you need to disable module from command line or just disable from app/etc/config.php file with set value 0 for Magento_Review.
Using command line, go to ssh through your root of magento,
php bin/magento module:disable Magento_Review
if issue resolved, Click kudos/Accept as solutions.
It does not work because of multiple dependencies :
---------------------
Unable to change status of modules because of the following constraints:
Cannot disable Magento_Review because modules depend on it:
Magento_Store: Magento_Store->Magento_Catalog->Magento_Customer->Magento_Review
Magento_Directory: Magento_Directory->Magento_Backend->Magento_Customer->Magento_Review
Magento_Eav: Magento_Eav->Magento_Backend->Magento_Customer->Magento_Review
Magento_Backend: Magento_Backend->Magento_Customer->Magento_Review
Magento_Theme: Magento_Theme->Magento_Customer->Magento_Review
Magento_Customer: Magento_Customer->Magento_Review
Magento_AdminNotification: Magento_AdminNotification->Magento_Backend->Magento_Customer->Magento_Review
Magento_Indexer: Magento_Indexer->Magento_Backend->Magento_Customer->Magento_Review
Magento_Cms: Magento_Cms->Magento_Backend->Magento_Customer->Magento_Review
Magento_Catalog: Magento_Catalog->Magento_Customer->Magento_Review
Magento_WebapiSecurity: Magento_WebapiSecurity->Magento_Webapi->Magento_Backend->Magento_Customer->Magento_Review
Magento_Weee: Magento_Weee->Magento_Customer->Magento_Review
Magento_CatalogWidget: Magento_CatalogWidget->Magento_Customer->Magento_Review
Dotdigitalgroup_Email: Dotdigitalgroup_Email->Magento_Review
Magento_WishlistAnalytics: Magento_WishlistAnalytics->Magento_Wishlist->Magento_Customer->Magento_Review
After Release of Magento 2.2.* version Advanced Option will remove so you need to disable module from command line or just disable from app/etc/config.php file with set value 0 for Magento_Review.
Using command line, go to ssh through your root of magento,
php bin/magento module:disable Magento_Review
We are using 2.2 and this successfully removed Product Reviews from the control panel, but everything related to Reviews is still showing on the website.
It will sound as silly question but did yo compiled, regenerated static assets and cleaned cache?