Skip to content

Instantly share code, notes, and snippets.

@imuhammadshoaib
Created October 3, 2021 21:55
Show Gist options
  • Save imuhammadshoaib/90410dbcffba5b983cb458d0446132fd to your computer and use it in GitHub Desktop.
Save imuhammadshoaib/90410dbcffba5b983cb458d0446132fd to your computer and use it in GitHub Desktop.
How to remove Nitropack footer?
jQuery(document).ready(function(){
setTimeout(function(){
//var np_tag = jQuery("template").eq(38).attr("id");
var np_tag = jQuery("template").last().attr("id");
console.log(np_tag);
//alert(tag_new);
jQuery("#" + np_tag).css("display", "none");
jQuery("#" + np_tag).next().next().css("display", "none");
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment