How to Protect Your Content from Copy Paste In Blogger Blog




Step by step instructions to Protect Your Content from Copy Paste In Blogger Blog : 

Ordinarily it transpired that some person replicated my substance. Most new bloggers duplicate different sites substance since they are not acquainted with Google Algorithm like penguin and panda that are created to evacuate destinations that don't have unique materials. 

Along these lines, I will impart a trap to you which is completely identified with shielding your blog substance from duplicating by incapacitating duplicate capacity. 

I will share you Javascript and CSS code to debilitate duplicate catches like Ctrl+A, Ctrl+ C and mouse duplicate capacities. Guests just can see the content yet will never have the capacity to duplicate it so it will help you to make your substance protectable. 

In this instructional exercise, I am sharing two diverse approach to handicap duplicate capacity in BlogSpot blog. 

Step by step instructions to Disable Copy Function with Javascript : 

1. Go to your Blogspot account and select blog where you need to cripple duplicate capacity. 

2. Tap on Template>Edit HTML 

3. Press Ctrl+F to open the Search box and after that hunt down the accompanying tag <head> in the HTML box. Glue all the javascript after the <head> tag and Save the layout. 

<!–Disabe Copy Paste Function—BV–> 

<script language='JavaScript1.2′> 

work disableselect(e){ 

return false 


work reEnable(){ 

return genuine 


document.onselectstart=new Function (&quot;return false&quot;) 

in the event that (window.sidebar){ 

document.onmousedown=disableselect 

document.onclick=reEnable 


</script>


The most effective method to Disable Copy Function with the exception of in Blockquote : 

Bloggers like us some of the time impart cool stuff to Blogspot individuals like gadgets and devices as codes like HTML/CSS/Javascript. They confront that incapacitating capacity does permit perusers to duplicate their content as well as deny to duplicate codes like HTML/CSS that they are sharing to then. 

Be that as it may, with my little deceive you can permit clients to duplicate your codes by giving permit work in blockquote. It implies that perusers can duplicate everything which is inside blockquote tag. 

It is so easy to initiate this capacity simply hunt down that code ]]></b:skin> and glue the accompanying CSS before this tag in Blogspot Template Editor.


/*— – Disable Text Selection with CSS Code—BV— - */ 

.post blockquote { 

- webkit-client select: content !critical; 

- moz-client select: content !imperative; 

- ms-client select: content !imperative; 

client select: content !vital; 


body { 

- webkit-client select: none !imperative; 

- moz-client select: - moz-none !imperative; 

- ms-client select: none !imperative; 

client select: none !imperative; 

}

Then again you can add this CSS to Layout by putting <style></style> before-after the code. 

In the above CSS code, the main tag is permitting to choose message inside blockquote tag. You can likewise have the capacity to forbid by expelling post blockquote and its style codes or essentially change the content to none. Be that as it may, you needn't bother with that additional code. 

On the off chance that you need to handicap duplicate glue and would prefer not to permit in blockquote then just glue the above CSS code.

body { 

- webkit-client select: none !vital; 

- moz-client select: - moz-none !vital; 

- ms-client select: none !vital; 

client select: none !vital; 

}

Presently at whatever point you place Code in post give it blockquote style, and it will get to be selectable for perusers just on the off chance that you are utilizing both CSS code. 

On the off chance that your blogger layout utilize distinctive post class like .post-body then change the .post blockquote into .post-body blockquote or if your format utilizes some other class then replaces .post with it. 

Note : Both codes can be removable from layout essentially by investigate component highlight accessible in all programs. Be that as it may, it sets aside a long opportunity to discover these codes. 

In the event that you discover the data in this post helpful, please impart it to your companions and associates on Facebook, Twitter and Google Plus.