Created
August 11, 2015 15:03
-
-
Save deadlyhifi/bb620e65a79f4fc0cdaa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Remove the admin notice suggesting you to install WooThemes Helper | |
*/ | |
function remove_wc_helper_notice() { | |
remove_action('admin_notices', 'woothemes_updater_notice'); | |
} | |
add_action('init', 'remove_wc_helper_notice'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment