How to Disable Browser Upgrade Notification Warning in WordPress

Home » Snippets » How to Disable Browser Upgrade Notification Warning in WordPress
0

Created with:

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project

Are you tired of constantly being bombarded with browser upgrade notification warnings? These pesky pop-ups can not only be annoying, but they can also disrupt your browsing experience. Luckily, there is a way to disable these notifications and enjoy uninterrupted web browsing. In this article, we will show you how to easily disable browser upgrade notification warnings and take control of your online experience.

					function wpturbo_disable_browser_upgrade_notification() {
    if (version_compare($_SERVER["HTTP_USER_AGENT"], "MSIE 10.0") === -1) {
        remove_action('wp_footer', 'wp_browser_nag');
    }
}
add_action('wp', 'wpturbo_disable_browser_upgrade_notification');
				

The code snippet provided in this tutorial aims to solve the problem of disabling the browser upgrade notification warning message in WordPress. This can be useful if you have users who are still using older versions of Internet Explorer and you want to prevent the notification from being displayed on your website.

The first part of the code snippet defines a new function called wpturbo_disable_browser_upgrade_notification(). This function will be responsible for checking the user agent of the browser and removing the action that displays the browser upgrade notification.

Inside the function, we use the version_compare() function to compare the user agent ($_SERVER["HTTP_USER_AGENT"]) with the version of Internet Explorer that we want to check against. In this case, we are checking if the version is less than "MSIE 10.0". If the condition is met (i.e., the user is using an older version of Internet Explorer), we proceed to remove the action that displays the browser upgrade notification by using the remove_action() function with the wp_browser_nag action.

The next step is to hook the wpturbo_disable_browser_upgrade_notification() function into the wp action. This ensures that the function is executed at the appropriate time during the page rendering process. By hooking into this action, we can be certain that the necessary functions and hooks are loaded before attempting to disable the browser upgrade notification.

With this code snippet, whenever a user visits your WordPress website using an Internet Explorer version older than "MSIE 10.0", the browser upgrade notification will not be displayed, providing a smoother user experience for those users.

Register an account to save your snippets or go Pro to get more features.