Subscribe For Free Updates!

We'll not spam mate! We promise.

Showing posts with label Blogger Tips. Show all posts
Showing posts with label Blogger Tips. Show all posts

How To Disable Hightlight Function: Protect Your Blog Content From Copy and Paste

Constructing a good blog post takes time, takes dedication and reasoning. Imagine, after
composing a good post & a total stranger comes to hijack (copy & paste your work) into his site without acknowledging your efforts. Sometimes, i can help but feel bad...
Ok, friends.. you can use this tip i am about to show you to guide your post.



The major trick you can use to protect your content from copy and paste bloggers is to disable highlight function.


               How To Disable Highlight Function:

Go to your dashboard
Click Template > Edit HTML > Proceed
Use ctrl F to find </head>  and paste the following code above  </head>

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

Now save your template.

                                Alternative:

You can also add it, using this second option.
Go to Layout > Add a Gadget > HTML/JavaScript
Paste the following code in the content box leaving the title box empty.

<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

Click on the Save button and you are done.
Now your blog content is now safe from copy and paste bloggers.
.



Solution To Edit HTML Problem In Blogger


I Recently Observed That My Blog Keeps Redirecting To A Different Page
 [ "blogspot.com/b/app-preview?token=Kk3WDsBAAA.VObmzefKkW1zqGaruKvYjQFrtHfGjbgf'' ]
When I Try Accessing My Html Page Of My Dashboard.



I was Unable To Edit Few Stuffs I had in mind. I was terribly worried and lacked idea of what to do. Immediately, i zoomed to Google, Searched And searched to Get A Solution. Then, I came up with this idea and way out.

Generally, the Edit Html option present in template manager redirects to a blank page, not showing the html code. The issue isn't browser dependent, i have tried Mozilla Firefox, chrome, opera and internet explorer , Opera too. But nothing worked.

The page turns blank because the 'Live on Blog' doesn't loads properly and it is the cause of the problem. And the solution to the problem is to simply avoid loading it stop loading the page before it tries to load that page element. It is easy because, the page loads and after a little pause it tries to load the Live on Blog. 










Once you have stopped the loading by clicking the (X) in the browser indicating 'stop loading this page' you will be able to load the Edit Html page easily.





This l worked for me and hope that it would work for You too.