To remove WooThemes and IgniteWoo update plugin notices, add the following code to your theme’s functions.php file.
1 2 3 4 |
//Remove WooThemes Updater remove_action('admin_notices', 'woothemes_updater_notice'); //Remove IgniteWoo Updater remove_action('admin_notices', 'ignitewoo_updater_notice'); |