Nitropack - Delete footer banner

So, apparently for Nitropack free version, you will get ugly banner that stays in the website footer. Luckily, we have ways to erase it. 1. Place this code You can place this on a file and save it as js file, or simply place it on divi --> integration or elementor --> extra code

<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>

Last updated