Close Menu
wpexpelorwpexpelor
  • WordPress Beginner tips
  • WordPress Security
  • Services
  • about us
  • contact us
Facebook X (Twitter) Instagram Pinterest
Facebook X (Twitter) Instagram Pinterest
wpexpelorwpexpelor
  • WordPress Beginner tips
  • WordPress Security
  • Services
  • about us
  • contact us
wpexpelorwpexpelor
Home»WordPress Beginner tips»How to disable WordPress plugin update notification?
WordPress Beginner tips

How to disable WordPress plugin update notification?

NinaBy NinaNovember 6, 2023Updated:December 16, 20231 Comment3 Mins Read
disable plugin update notification wordpress
disable plugin update notification wordpress
Share
Facebook Twitter LinkedIn Pinterest Email
5/5 - (8 votes)

How to disable plugin update notification wordpress ? We highly recommend updating the theme and plugins. That would definitely help to increase the security level of the site. Although, due to security issues, this is not recommended in wpexpelor, here are the instructions to : “WordPress disable plugin update notification” step by step.

Contents show
1 WordPress disable plugin update notification with plugin
2 WordPress disable plugin update notification without plugin

WordPress disable plugin update notification with plugin

Using a plugin to disable notifications is easy, and you can manage the issue in less than 10 minutes! Just follow these steps:

  1. Click on the plugin parts to access the WordPress repository.
  2. Search “Easy Updates Manager”, and install and activate the plugin.
  3. As we have shown in the picture, from the dashboard, go to the “updates option” part.
  4. Select “Disable all updates” and well done! You have successfully disabled all plugin notifications in WordPress.
WordPress disable plugin update notification with plugin
WordPress disable plugin update notification with plugin

 This “Disable all updates” option is related to all notifications. It means you can disable both WordPress theme update notifications and WordPress plugin update notifications.

From the section “WordPress core updates” you can see WordPress core update notifications and let the theme to show all the plugins up to date. The “Easy Updates Manager” plugin has flexible parts that allow you can disable plugin update notifications, disable WordPress core updates, and even disable translations individually. 

Easy Updates Manager plugin
Easy Updates Manager plugin

In all those sections, there is a part called “Enable auto updates”. If you choose this option, the WordPress theme and plugins are updated automatically. 

Easy Updates Manager plugin setting
Easy Updates Manager plugin setting

Sometimes, you need to keep the site updated. However, there is a common problem that updates in some plugins may lead to incompatibility. (Due to plugins confliction problems)

plugin and theme auto update settings
plugin and theme auto update settings

The good news is that this plugin has an option that lets us update only the desired plugins. To do so, choose the “plugin” tab from the top section in “Easy Updates Manager”. In this part, you can block any plugins that there is no need to be updated. The same option is available for the WordPress theme. 

plugin update block settings
plugin update block settings

WordPress disable plugin update notification without plugin

To disable plugin update notification without plugin you can copy and past this code in to the functions.php file in your WordPress theme.

Note! For consistent changing use child theme. This part of code will disable all types of WordPress notifications as plugin update notifications, theme update notifications and plugin update notifications.

// DISABLE PLUGIN UPDATE NOTIFICATIONS
FUNCTION DISABLE_PLUGIN_UPDATES($VALUE) {
    UNSET($VALUE->RESPONSE);
    RETURN $VALUE;
}
ADD_FILTER('SITE_TRANSIENT_UPDATE_PLUGINS', 'DISABLE_PLUGIN_UPDATES');

// DISABLE THEME UPDATE NOTIFICATIONS
FUNCTION DISABLE_THEME_UPDATES($VALUE) {
    UNSET($VALUE->RESPONSE);
    RETURN $VALUE;
}
ADD_FILTER('SITE_TRANSIENT_UPDATE_THEMES', 'DISABLE_THEME_UPDATES');

// DISABLE CORE UPDATE NOTIFICATIONS
FUNCTION DISABLE_CORE_UPDATES($VALUE) {
    IF (ISSET($VALUE) && IS_OBJECT($VALUE)) {
        UNSET($VALUE->RESPONSE);
    }
    RETURN $VALUE;
}
ADD_FILTER('PRE_SITE_TRANSIENT_UPDATE_CORE', 'DISABLE_CORE_UPDATES');

You can also use separate code to disable update notification in WordPress.

Here is the code For disable wordpress plugin update notification. (disable wordpress plugin update notification without plugin)


// DISABLE PLUGIN UPDATE NOTIFICATIONS
FUNCTION DISABLE_PLUGIN_UPDATES($VALUE) {
    UNSET($VALUE->RESPONSE);
    RETURN $VALUE;
}
ADD_FILTER('SITE_TRANSIENT_UPDATE_PLUGINS', 'DISABLE_PLUGIN_UPDATES');

Here is the code For disable wordpress theme update notification.(disable wordpress theme update notification without plugin)


// DISABLE THEME UPDATE NOTIFICATIONS
FUNCTION DISABLE_THEME_UPDATES($VALUE) {
    UNSET($VALUE->RESPONSE);
    RETURN $VALUE;
}
ADD_FILTER('SITE_TRANSIENT_UPDATE_THEMES', 'DISABLE_THEME_UPDATES');

Here is the code For disable wordpress update notification.(disable wordpress update notification without plugin)

// DISABLE CORE UPDATE NOTIFICATIONS
FUNCTION DISABLE_CORE_UPDATES($VALUE) {
    IF (ISSET($VALUE) && IS_OBJECT($VALUE)) {
        UNSET($VALUE->RESPONSE);
    }
    RETURN $VALUE;
}
ADD_FILTER('PRE_SITE_TRANSIENT_UPDATE_CORE', 'DISABLE_CORE_UPDATES');

I hope this training would be handy for you. Feel free to comment any questions about WordPress.

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Reddit VKontakte Telegram WhatsApp
Previous ArticleHow can I change the WooCommerce default product tab on a single product page?
Next Article How to redirect user after login WordPress?

Related Posts

woocommerce user registration form without email

June 9, 2024

Edit Author Slug in WordPress

January 30, 2024

install 2 wordpress on same domain

January 23, 2024

1 Comment

  1. Emily G on November 17, 2023 6:20 pm

    Thank you for sharing your knowledge on how to disable plugin update notifications on WordPress. Your step-by-step guide was easy to follow and the use of a plugin to manage the issue is a great solution. I appreciate that you also included the option to disable WordPress core update notifications. This will definitely save me time and hassle in the future!

    Reply

Leave A Reply Cancel Reply

Trending
WordPress Beginner tips

How to disable WordPress plugin update notification?

By NinaNovember 6, 20231

How to disable plugin update notification wordpress ? We highly recommend updating the theme and plugins. That…

E-Commerce Seo Services in Austin

July 7, 2025

pingbacks and trackbacks

July 4, 2025

Austin local seo services

June 30, 2025

affordable local seo services in houston

June 28, 2025
Social
  • Facebook
  • Twitter
  • Pinterest
  • Instagram
Facebook X (Twitter) Instagram Pinterest
©2025 WPexpelor. All Rights Reserved.

Type above and press Enter to search. Press Esc to cancel.