How To Disable Updraftplus From Appearing On Toolbar

UpdraftPlus is a popular WordPress plugin that provides backup and restore functionality. However, some users may find it annoying that UpdraftPlus appears on the toolbar of their website. Fortunately, there are several ways to disable UpdraftPlus from appearing on the toolbar.

Method 1: Disable UpdraftPlus in Plugin Settings

The easiest way to disable UpdraftPlus from appearing on the toolbar is by disabling it in the plugin settings. To do this, go to Settings > UpdraftPlus Backups and uncheck the box next to “Show UpdraftPlus menu item in admin bar.” Save your changes and refresh your website to see the results.

Method 2: Disable UpdraftPlus with a Plugin

If you prefer not to edit the plugin settings, you can also disable UpdraftPlus from appearing on the toolbar using another plugin. One such plugin is Admin Bar Menu Editor. Install and activate this plugin, then go to Settings > Admin Bar Menu Editor and select “UpdraftPlus” from the menu items list. Click on the “Hide” button next to it and save your changes. Refresh your website to see the results.

Method 3: Disable UpdraftPlus with a Code Snippet

If you prefer to edit your theme’s functions.php file, you can also disable UpdraftPlus from appearing on the toolbar using a code snippet. Add the following code to your functions.php file and save it:

function remove_updraftplus_adminbar() {
    remove_action( 'admin_bar_menu', array( UpdraftPlus::get_instance(), 'admin_bar_menu' ), 99 );
}
add_action( 'init', 'remove_updraftplus_adminbar' );

Refresh your website to see the results.

Conclusion

In conclusion, there are several ways to disable UpdraftPlus from appearing on the toolbar of your WordPress website. You can either disable it in the plugin settings, use a plugin like Admin Bar Menu Editor, or edit your theme’s functions.php file using a code snippet. Choose the method that works best for you and enjoy a cleaner toolbar.