Thursday, March 15, 2012

How to add Copyright Notice to Copied Blog Post

0 comments
I recently post about copyrighted post especially on how to complain copyrighted blogs. I posted that someone copied my blog and no credits from me. And to stop that kind of blog, I reported to Google and was happy that the post they copied was deleted.

Since then, I want to get some way that if someone copied my post it will automatically credit to my post and good thing I found it. Now, let me share to you the codes on how to add copyright notice to copied blog posts.

On this codes, if someone copied your post it will automtically include the original url where they copied the post. And good thing it's for blogger and not to any platform.


Procedure on "How to add copyright notice to copied blog post"

  • Login to your blogger account
  • Next, go to HTML >> Proceed >> check "Expand Widget Template"
  • Find this code </head>
  • Copy the code below </head>

<script type="text/javascript">
function addLink() {
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "<br/><br/> Original from: <a href='"+document.location.href+"'>"+document.location.href+"</a><br/>Copyright jomarisme - All Rights Reserved"; // change this if you want
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function() {
body_element.removeChild(newdiv);
},0);
}document.oncopy = addLink;
</script>

For the code, download here or here
  • Change the word jomarisme  to the word of your choice
  • Then SAVE
If someone copied your blog post, it will automatically add this word
from: http://jomarlipoblogspot.com/#########################.html
Copyright Jomar Is Me - All Rights Reserved

Hope it helps since it works for me. Feel free to contact us if you have problem

Leave a Reply

Related Posts Plugin for WordPress, Blogger...