One of my pet hates is plugin notifications on WordPress, especially the ones you can’t remove without the click of an exit button. WooCommerce plugins tend to put a message at the top of the screen on your dashboard enticing you to install the “WooThemes updater plugin”. I can see how the plugin is useful, as it will allow you to ensure all of your WooCommerce plugins are up to date…but it’s really annoying, especially if you’re making the website for a client who will see that and wonder what it’s all about..
There’s a really simple fix to this, just go to your functions.php file and add this code:
// Remove WooCommerce Updater remove_action('admin_notices', 'woothemes_updater_notice');
On refresh, the message will be gone, never to be seen again 🙂