How to Prevent Posts or Articles Cannot be Copied and Pasted
In this article, I will share a tutorial so that our posts or articles cannot be copied and pasted. Maybe you need it to protect content from copy paste activities, that's why I made this article and tutorial.
Apart from protecting articles from copy paste activities, this method can also protect blogs from duplicate content.
Which can cause our articles or writing to disappear from the Google search engine because they are considered to be of low quality.
The following are methods and tutorials along with steps so that our articles cannot be copied and pasted, see the method below.
- Login to Blogger dashboard
- Select Themes
- Then click Edit HTML
- Copy the CSS code below
/* NO Copas Kbd Pre blockquote */
.post-body{
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
}
pre{
-khtml-user-select: text;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-khtml-user-select: text;
user-select: text;
}
kbd{
-webkit-user-select: text;
-moz-user-select: text;
}
-ms-user-select: text;
user-select: text;
- Put the code above
]]></b:skin>
- Save the theme
Important to note! The function of the code above is to limit the text in the markup in the code pre, kbd and blockquote. But the text can still be copied. The above tutorial is perfect for blogs that discuss blog tutorials.
Easy enough right? Hopefully, with the tutorial above, your blog is safe from theft of articles and copy and paste.
Thus the tutorial article this time, how to prevent posts or articles from being copied and pasted.
Post a Comment