• Why isn’t there a simple preference to disable core and plugin update checks? Make it scary, make it horrible, but please make it available without adding to my plugin checklist.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    The issue was not raised until just before the release, leaving no time to get a simple checkbox option added.

    There is a ticket and patch in to do just that. These plugins are only there in order to combat irrational paranoia.

    Regardless, this information is not saved anywhere. It’s only used to determine update needs.

    Thread Starter jonez

    (@jonez)

    Thanks for the update! I’m not terribly concerned about the privacy issues raised by some. I just don’t need it active on every one of my WordPress installs … seven and rising! ??

    I see this:

    https://lud.icro.us/disable-wordpress-core-update/

    But not working at all:

    https://img206.imageshack.us/img206/7510/wordpressupdatebrokekn6.png

    I logged out of admin cp, cleared cache, and then relogin and check the plugin page and still showing updates.

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    war59312: The update code sets a flag when it finds an update. So turning off the check like this won’t disable that flag.

    So, it’s not that it’s looking for an update still, it’s that it actually found one before you turned them off. The flag won’t clear until you actually perform the update.

    Oh ok, got ya.. Any way to remove that flag then?

    John Blackbourn

    (@johnbillion)

    WordPress Core Developer

    war59312: you’re using the wrong plugin. Try this one: https://www.ads-software.com/extend/plugins/disable-wordpress-plugin-updates

    Ott042: the plugin does in fact hide the update notification even if the update flag has already been set before the plugin was activated ??

    OMG I’m blind some times… Yeah thanks.. Got both working fine now… Thanks! ??

    I have found the “Disable Core Update” does not actually work in preventing all activity. The reason is because the default priority for the add_action is too low.

    edit the plugin and change the first line to this simple addition:
    add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ),2);

    (only thing that is different is the “,2” which sets a very high priority)

    This change is tested working.

    localword

    (@localword)

    Someone elsewhere posted a simple css fix so the wordpress core update message won’t display (the chief concern I have for my customers).

    Edit the wp-admin.css (under the wp-admin directory) and add “display: none;” to #update-nag section. (it’s near the very bottom)

    Worked like a champ and was very easy.

    The plug-in (https://www.ads-software.com/extend/plugins/disable-wordpress-plugin-updates/) oddly enough caused severe performance issues on my blogs causing page timeouts and extremely slow page loads. Deactivate the plugin, all is good, Activate it, performance issues abound. It would happen 1 out of every 4-6 page loads. Strange.

    Side note – I use A LOT of plugins, so this could be a result of a combination of plugins, not that this one is the sole cause. But wanted to provide a heads up if anyone else experienced the same thing.

    @localword: Genius.

    John Blackbourn

    (@johnbillion)

    WordPress Core Developer

    @alkagoel: Correct. What would you like done about it?

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Disabling update notification features (core feature)’ is closed to new replies.