To disable or enable a module in magento 2 we have to take the following steps:
1- Just go to your project root directory and open config.php file from following location:
app/etc/config.php
2- Now search for the module in this file, which one you want to enable or disable.
3- if you want to enable the module then set the value 1 of that module.
4- if you want to disable the module then set the value 0 of that module.
5- Finally save the file and run upgrade command.
1- Just go to your project root directory and open config.php file from following location:
app/etc/config.php
2- Now search for the module in this file, which one you want to enable or disable.
3- if you want to enable the module then set the value 1 of that module.
4- if you want to disable the module then set the value 0 of that module.
5- Finally save the file and run upgrade command.
Comments
Post a Comment