To remove the Nitropack watermark from your website footer, you simply have to install a plugin named “Insert headers and footer” and put the following code in the header. And you are good to go.
<script>
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);
});
</script>
1 thought on “How to remove the Nitropack watermark from the footer?”
it’s great. thanks for your help