.wrap_aclinfo ul { display: none } .dokuwiki .plugin_wrap.wrap_aclinfo { display: inline-block; float: right; } jQuery(function() { if (typeof(aclinfo) === 'undefined') { aclinfo = true; console.log("List page access rights"); var found = false; jQuery(".wrap_aclinfo div.li").each(function () { var info = jQuery(this).text(); console.log(" - ", info); var search = "@bigben-prod peut lire cette page"; if (info == search) { found = true; return false; } }); jQuery(".wrap_aclinfo ul").remove(); if (!found) { jQuery(".wrap_aclinfo").remove(); } } });