Skip to content

Instantly share code, notes, and snippets.

@growdev
Created December 3, 2014 20:03
Show Gist options
  • Save growdev/ad915038172511975fbd to your computer and use it in GitHub Desktop.
Save growdev/ad915038172511975fbd to your computer and use it in GitHub Desktop.
Remove WooThemes Helper plugin nag
<?php
add_action( 'init', 'growdev_remove_woo_nag' );
/**
* Remove the admin notice nagging you to install/activate the WooThemes Helper plugin
* This notice should be dismissable, but isn't.
*
*/
function growdev_remove_woo_nag() {
remove_action( 'admin_notices', 'woothemes_updater_notice' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment