Skip to content

Instantly share code, notes, and snippets.

@Mark-H
Last active March 1, 2016 22:15
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mark-H/1025509 to your computer and use it in GitHub Desktop.
Save Mark-H/1025509 to your computer and use it in GitHub Desktop.
Plugin to disable tooltips in MODX globally.
<?php
// Disables tooltips globally.
//
// Create a new plugin and add the following system event: OnManagerPageInit
//
// © 2010 Mark Hamstra <hello@markhamstra.com>
// Buy me a beer? Paypal hamstra.mark at gmail.com.
//
// Licensed under the MIT license
$modx->regClientStartupHTMLBlock('
<script type="text/javascript">
Ext.onReady(function() {
Ext.QuickTips.disable();
});
</script>
');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment