News Ticker

How to Add Non Removable Credit Links in Blogger?

By Ajay Verma - Wednesday 27 April 2016 No Comments
hello friend i am writing this article to protect blogger template from removing credit links.
before describing i want to confess that there is no way to protect we can only make harder only.
suppose we have a credit link having following sample.


<div id='creditud64'>
Designed By <a href='http://ud64.com/' id='creditud64'>Unknowndevice64</a>
</div>
Now we have 2 task to do, 1 no one can remove this footer and no one can change link.
we will implement simple login, if id #creditud64 not found website will reload to my website as well as if anyone change the url it will detect and add href attribute to my url.


<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function(){
var aa=$("#creditud64").val();
if (aa == null) {
window.location.href = "http://ud64.com/";
};
$("#creditud64").attr("href","http://ud64.com");
});
//]]>
</script>
we need to add above code after 'head' tag, if jQuerry is already included in webpage remove first line.
Now if smart decoder start searching in code ?
well its simple to hide above code using from as a external javascript, upload code to somewhere and include using link.


<script src='UPLOADED SERVER/file.js' type='text/javascript'/>
or you can use some JavaScript encryption to hide above code.

No Comment to " How to Add Non Removable Credit Links in Blogger? "