• Hi.
    I am using WP 3.7.1. Directory. On the top of page of user’s control panel a yellow strip shows:
    WordPress 3.8 is available! Please notify the site administrator.

    i don’t want my users knows that which version i used
    Where can I disable this message for users?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    It’s really not a good idea to not upgrade but there may be a plugin that can help you.

    http://wordpress.org/plugins/search.php?q=disable+updates

    I encourage you to upgrade. WordPress 3.8 is really very good.

    Thread Starter naderfarid

    (@naderfarid)

    that is not about upgrading. my issue is that the message that the system put on the wall of the user:
    WordPress 3.8 is available! Please notify the site administrator.

    My question is: Where can I disable this message for users?

    copy and paste this code on your functions.php file. (between <?php and ?> codes)

    if ( !current_user_can( 'edit_users' ) ) {
      add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
      add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable message’ is closed to new replies.