Reputation: 103
Under the Catalogue option in the magento admin menu is an option called Tags. I would like to remove this option - is there an easy way to do it?
I have tried creating an adminhtml.xml file in /etc containing the following but it didn't work:
<?xml version="1.0" ?>
<config>
<menu>
<tag>
<disabled>1</disabled>
</tag>
</menu>
</config>
Thanks.
Upvotes: 0
Views: 478
Reputation: 236
1) You can disable the Tag module output in the admin area.
See menu admin > system > configuration > advanced > disable module output
.
2) To disable the whole module completely please open app\etc\modules\Mage_All.xml
file,
find lines
<Mage_Tag>
<active>true</active>
<codePool>core</codePool>
<depends>
<Mage_Catalog/>
</depends>
</Mage_Tag>
and replace true
with false
. Clear the cache.
Upvotes: 1
Reputation: 4081
Here are the steps you should follow:
Dashboard > System > Config > Advanced > Mage_Tag > Disable > Save
If you still see the option, try disabling caching in the Magento admin pages and then try again.
Upvotes: 1