How to Disable Copy Paste In Blogger 2023 With Code

How to Disable Copy Paste In Blogger 2023 With Code
How to Disable Copy Paste In Blogger 2023 With Code

This Article is About How to Disable Copy Paste In Blogger 2023 With Code. If you go to different websites, you can see that no article on these sites can be selected or copied with the mouse.

The reason for this is that the right click is disabled on all these websites to prevent content theft. So today I will discuss in detail how to disable copy and paste and right-click on the blogger website using only one code.

This article will not be useful for WordPress users. For them, there is a separate article on this topic on this site. If you are interested to read: Click here

Why do I disable copy and paste on Blogger Website?

It takes a lot of hard work to write SEO-friendly high quality content. Especially those who are new will understand how much time it takes to write content. In the new situation, it is almost impossible to think about what content to write about.

Moreover content SEO, keyword research, data collection, etc. And after so much trouble, if after publishing the content, someone copies it and publishes it on their own site. Then there is nothing to do.

What happens a lot of the time? Newcomers take a lot of time to get their posts indexed. As a result, if the old sites copy the post from your site. But before that, his site will be indexed by Google. Due to this, even if you have your own content, the copy posted on Google will rank.

When you check the plagiarism of your post, only your post will show copies. Moreover, when the site applies for advertising, it is rejected due to copyright.

If the right click is disabled on your website, your content will be safe from theft. So below is how to Disable the Free Copy-Paste Of Bloggers.

How To Disable Copy Paste In Blogger

I will tell you 3 ways to disable right-click on blogger website. You can adopt any one method from here. The first two methods have to be done inside the blogger template.

And the rest of the method has to be done by going to the layout option of the blogger. Many may use all the methods by mistake. In the end, I would say that you use any single method.

1st Method

If you apply the first code, no text will be selected for your site post. As a result, even if the right button works, the copy option will not come.

Copy This Code

<style type='text/css'>
body{
display:block;-khtml-user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
-o-user-select:none;
user-select:none;
unselectable:on;
}
</style>

Now click on the Blogger Theme option, click on Customize Edit HTML and go inside the template.

How do I Disable Copy Paste on Blogger?

If you use a computer, press Ctrl + F. Then ]]> </b>: skin> find this code. Those who set the code with mobile will get it in the middle of the template.

]]> </b>: skin> After receiving the code, paste and save the code to Disable Copy Paste with the space below. Now open any post, copy-paste will not work if the code is installed successfully. Those who have trouble understanding, notice the image above.

2nd Method

If you apply the second code, you can select and copy it. But the funny thing is that you don’t have to paste the code elsewhere.

Copy these codes.

<script>
$(&#39;body&#39;).bind(&#39;copy cut drag drop&#39;, function (e) { e.preventDefault(); });
</script>

First, copy the code above. Then go inside the HTML of the template. Then press Ctrl + F and search for this </body> code.

Now paste the code with space on top of </body>. After entering the code, save it and check if it is working.

How to protect your blog content from copying

3rd Method

Copy these codes.

<script type='text/javascript'> 
if (typeof document.onselectstart != "undefined") { 
document.onselectstart = new Function("return false"); 
} else { 
document.onmouseup = new Function("return false"); 
document.onmousedown = new Function("return false");
}
</script>

To stop copy-paste in the third method, first, copy the code. Then click on the Blogger layout option. Now click on the Add a gadget option in the sidebar.

how to protect your content from being copied

Then click on the HTML / JavaScript option, paste the codes in place of the Content, and Save.

Conclusion

In this article, I have tried to give some tips to protect blogger content from being copied. Let me know in the comments how you like the information. I am slowly starting to upload content to this website. Subscribe to this site to get new updates.

You may also be interested in reading

Rate this post

Leave a Comment