To remove admin menu item in Magento follow below tips.
Open the file where you created Admin menu item for your plugin. It is may be either in
Then find <menu> tag in it and add <disabled>1</disabled> under it, to hide that menu from admin.
Open the file where you created Admin menu item for your plugin. It is may be either in
app/code/local/Company/Namespace/etc/adminhtml.xml
or app/code/local/Company/Namespace/etc/config.xml
file.Then find <menu> tag in it and add <disabled>1</disabled> under it, to hide that menu from admin.
<menu> ----------- <company_namespace translate="title"> <title></title> <disabled>1</disabled> <sort_order></sort_order> ----------- </menu>
Tag :
Magento
0 Comments On "How to Remove Admin Menu Item in Magento"