• Upon activating I got an error message. I observed problems immediately. Serious enough that I had to uninstall. Unfortunately, it seems this plugin is not being supported any longer.

Viewing 1 replies (of 1 total)
  • Hi,

    I change the code because it broke my admin panel, so it worked for me.

    In the file notttips.js the new code should be:

    window.onload = function() {
    var bodylinks = document.getElementsByTagName(“body”);
    var numadmin = 0;
    for (var j = 0; j < bodylinks.length; j++) {
    var clase = bodylinks[0].getAttribute(“class”);
    if ( clase.search(“wp-core-ui”) > 0 ) {
    numadmin = numadmin + 1;
    }
    if ( clase.search(“wp-admin”) > 0 ) {
    numadmin = numadmin + 1;
    }
    }
    if ( numadmin < 1) {
    var alinks = document.getElementsByTagName(“a”);
    for (var i = 0; i < alinks.length; i++) {
    alinks[i].removeAttribute(“title”);
    }
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Looks like its broken’ is closed to new replies.