Reputation: 167
After the installation of the magic toolbox extension it's not remove so how it is remove from the admin panel of the magento
Upvotes: 0
Views: 245
Reputation: 1431
To fully disable module, you need to go to module config file, like app/etc/modules/MagicToolbox_Magic360.xml, and set it’s active parameter to false, like:
<?xml version="1.0"?>
<config>
<modules>
<MagicToolbox_Magic360>
<active>false</active>
<codePool>local</codePool>
</MagicToolbox_Magic360>
</modules>
</config>
Remember to flush the Magento cache afterwards.
Upvotes: 2