• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

[REQ] Webcraftic Disable Admin Notices

miyojin

Well-known member
Babiato Lover
Trusted Uploader
Oct 9, 2018
299
424
63
Hello Guys,

This is a great plugin. Would you care to share if you have the pro version?


If you have un-nulled fresh version, please send and I'll try null the plugin.

Thanks
 
hi all. any free plugin to disable update and admin notifications would be great. the plugin from webcraftic is hard to find:(
 
As an alternative, you can create a TamperMonkey script for your browser to remove those annoying notices yourself.
Just update or add the @include variables.
Inspect any other elements with your browser to get id's or classnames to remove.

JavaScript:
// ==UserScript==
// @name         Remove Wordpress Notifications
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @include      https://YOURSITE_ONE/wp-admin/*
// @include      https://YOURSITE_TWO/wp-admin/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    removeElementsByClass('notice');
    removeElementsByClassQry('.updated, .woocommerce-message');
    removeElementsByClassQry('#message, .error');
    // Smart manager update notice
    removeElementsByClassQry('.sm-upgrade-notice');
    // WP Update Nag notice
    removeElementsByClassQry('.update-nag');
})();

function removeElementsByClass(className){
    const elements = document.getElementsByClassName(className);
    while(elements.length > 0){
        elements[0].parentNode.removeChild(elements[0]);
    }
}

function removeElementsByClassQry(classNames){
    const elements = document.querySelectorAll(classNames);
    for (let i = elements.length; 0 < i ; ){
        elements[--i].remove();
    }
}

hmmm, this CODE block does not display correctly, you'll have to add the CR/LF's again yourself

Screenshot_1.png
 
Last edited:
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock