There are two quick ways to disable the sometimes annoying Admin notification in the Magento back end.
Method 1
Under: System > Configuration > Advanced > Advanced > Disable Modules Output simply set Mage_AdminNotification to “Disable”.
Method 2
The previous method works fine but potentially, a user can re-enable these easily. To make the change a bit more difficult to undo, we can disable the module from the modules XML files. If we already have a custom module, we can simply add:
<Mage_AdminNotification>
<active>false</active>
</Mage_AdminNotification>
To our module XML file. A complete example could look like this:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<MageBase_Custom>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Core />
<Mage_Cms />
</depends>
</MageBase_Custom>
<Mage_AdminNotification>
<active>false</active>
</Mage_AdminNotification>
</modules>
</config>
Originally published on magebase.com. Copyright © 2010 Magebase - All Rights Reserved.




Proud members of the 









Thanks for this Robert, I get fed up with those boxes too.
Alex
Likewise!
lol
now that is a useful tip.. those damn things drive me around the twist.
why do they have to sooo invasive.
Best advice
thanks mate
[...] Disable Admin Notifications in the Magento Back-end VN:F [1.9.7_1111]please wait…Rating: 10.0/10 (2 votes cast)Magento Tips, 10.0 out of 10 based on 2 ratings Categories: Magento Tags: Comments (0) Trackbacks (0) Leave a comment Trackback [...]