How to Remove NitroPack Watermark From Footer in WordPress

Published: 14 May 2023
on channel: WebTask With Hassan
6,258
103

In this wordpress tutorial for beginners you will learn how to delete / hide nitropack plugin watermak in footer using custom jquery code in website. So you will add code in head section in wpcode plugin.

** Find Code with script text with angle brackets in top Pinned Comment Section.

* Add script angle brackets in above and last section in code to open/close script.

** Find Full Code in Top Pinned Comment Section with Script Tag.

jQuery(document).ready(function(){
setTimeout(function(){
//var tag_new = jQuery("template").eq(38).attr("id");
var tag_new = jQuery("template").last().attr("id");
console.log(tag_new);
//alert(tag_new);
jQuery("#" + tag_new).css("display", "none");
jQuery("#" + tag_new).next().next().css("display", "none");
}, 100);
});

#nitropack #jquery #watermark #footer #wordpress #wordpresstutorial #webtaskwithhassan #hassangilani