Disable admin notifications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- in local.xml --> | |
<!-- Note that enterprise modules have dependencies to Mage_AdminNotification, so disabling it this way could break something --> | |
<config> | |
<modules> | |
<Mage_AdminNotification> | |
<active>false</active> | |
</Mage_AdminNotification> | |
</modules> | |
</config> | |
<!-- or: in layout xml --> | |
<config> | |
<adminhtml> | |
<events> | |
<controller_action_predispatch> | |
<observers> | |
<adminnotification> | |
<type>disabled</type> | |
</adminnotification> | |
</observers> | |
</controller_action_predispatch> | |
</events> | |
</adminhtml> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment