Skip to content

Instantly share code, notes, and snippets.

@ericthehacker
Last active January 24, 2020 00:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericthehacker/3d13bd150223f4691caf to your computer and use it in GitHub Desktop.
Save ericthehacker/3d13bd150223f4691caf to your computer and use it in GitHub Desktop.
Local.xml nodes to disable annoying and/or inefficient admin spam
<?xml version="1.0"?>
<config>
<!-- disable annoying adminhtml observers and modules -->
<adminhtml>
<events>
<controller_action_predispatch>
<observers>
<awall_exts>
<type>disabled</type>
</awall_exts>
<awall_upds>
<type>disabled</type>
</awall_upds>
<awall_check>
<type>disabled</type>
</awall_check>
</observers>
</controller_action_predispatch>
<!--The following paypal observer improves performance of system config,-->
<!--but causes paypal system config settings not to show.-->
<!--<adminhtml_init_system_config>-->
<!--<observers>-->
<!--<paypal>-->
<!--<type>disabled</type>-->
<!--</paypal>-->
<!--</observers>-->
<!--</adminhtml_init_system_config>-->
<controller_action_predispatch>
<observers>
<ambase_upds>
<type>disabled</type>
</ambase_upds>
</observers>
</controller_action_predispatch>
<controller_action_predispatch>
<observers>
<xtento_feed>
<type>disabled</type>
</xtento_feed>
</observers>
</controller_action_predispatch>
<controller_action_predispatch>
<observers>
<urapidflow>
<type>disabled</type>
</urapidflow>
</observers>
</controller_action_predispatch>
<controller_action_predispatch>
<observers>
<adminnotification>
<type>disabled</type>
</adminnotification>
</observers>
</controller_action_predispatch>
</events>
</adminhtml>
<modules>
<CLS_AdminEnhance>
<active>false</active>
</CLS_AdminEnhance>
</modules>
<!-- END disable annoying adminhtml observers and modules -->
</config>
@TheRealJAG
Copy link

How you seen speed increases in admin once disabling?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment