Skip to content

Instantly share code, notes, and snippets.

@fbrnc
Created October 29, 2012 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fbrnc/3975149 to your computer and use it in GitHub Desktop.
Save fbrnc/3975149 to your computer and use it in GitHub Desktop.
Disable admin notifications
<!-- 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