Skip to content

Instantly share code, notes, and snippets.

@InpsydeNiklas
Created March 25, 2022 01:38
Show Gist options
  • Save InpsydeNiklas/9a5e1108bef3178f89a02720a59602bc to your computer and use it in GitHub Desktop.
Save InpsydeNiklas/9a5e1108bef3178f89a02720a59602bc to your computer and use it in GitHub Desktop.
Remove undismissable WooThemes Updater notification: Install/Activate the WooThemes Helper plugin to get updates for your WooThemes plugins.
add_action( 'init', 'remove_woothemes_updater_notice' );
/**
* Remove the undismissable admin notice to install/activate the WooThemes Helper plugin.
*/
function remove_woothemes_updater_notice() {
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