| Subcribe via RSS


Keep upto date, and get an email whenever new content is posted.


Simply Pop Your Email Address in Here:    


How To Hide Wordpress’s “Update Now” Notice

December 14th, 2009 Posted in wordpress plugins

We all love Wordpress, but recently they have been pumping out new version faster than we can keep up.

I make websites for clients using Wordpress, and one of the most annoying things is the banner displayed at the top of the admin area, saying there is a new version, and becuase of that, they want their website update now!

wp-upgrade-notification

Upgrade Notification in Wordpress. We don't always want it displayed.

Like all clients, as soon as my clients see this, they have to have their website updated immediately! And then I have to go through all the joys of making sure all the plugins works etc.

So to overcome this annoying update notification, I came up witht the following solution:

I wrote a plugin called “Hide WP Nag”

It simply calls the built-in Wordpress function remove_action( ‘admin_notices’.
Its really simple and works very well.

I don’t know how backward compatible it is, but it works in all version since 2.8.3 to 2.8.6,

You can download the plugin here. Unzip it and then upload to your /plugin directory and activate as usual.

For those propellor heads like myself, that want to see how it works, here is the plugin in all its glory :)


<?php
/*
Plugin Name: Hide WP Update Reminder
Plugin URI: http://www.websitesecrets101.com/how-to-hide-wordpresss-update-now-notification
Description: Allows you to remove the upgrade Nag screen from view
Author: Bruce Hearder
Version: 1.0
Author URI:http://www.websitesecrets101.com/
*/
add_action('admin_menu','bhhidenag');
function bhhidenag()
{
remove_action( 'admin_notices', 'update_nag', 3 );
}
?>

I hope this helps

8 Responses to “How To Hide Wordpress’s “Update Now” Notice”

  1. John Says:

    Hi Bruce, thanks for the plug-in! Problem: I noticed that when changing user options in the admin panel, the page goes blank upon submit. I deactivated all my plugins and it seems to be yours. FYI… Cheers, John


  2. John Says:

    BTW, I’m on WP 2.85


  3. Bruce Says:

    Hi John,

    I’ve just upload a new version so try downloading a new one and see if it works a bit better.

    Bruce


  4. John Says:

    Perfect. Thanks Bruce!


  5. Vojtech Vondra Says:

    Great, helpful :)


  6. Carlos E Says:

    Hi Bruce, i had the same issue as you with your clients, tried a hack but was unstable, the plugin works like a charm. Thanks a lot!!!


  7. Bruce Says:

    Glad you liked it..
    I’ve got a bunch more WP plugins coming out over the new few weeks.
    Most of these plugins are designed to really optimize a WP blog the the max (SEO Wise that is).

    So keep tuned and maybe I’ll have the plugins you want.

    Bruce


  8. palPalani Says:

    thanks for this plugin, this is what i’m looking for.


Leave a Reply