Sunday, October 29, 2017

How to install Google Translate widget on Blogger?

1. Go to https://translate.google.com/manager/website/
2. Follow the instructions there. 
3. Copy the code.
4. Go to Blogger.com
5. Click Layout-, +Add a gadget 
6. Paste the code into the box
7. Click Save & Save arrangements

Saturday, October 21, 2017

How to hide comment section on my blog?

1. Log in to Blogger.com
2. Select your blog then click at Theme
3. Click Settings
4. Click Posts, comments and sharing
5. After Comment location, select Hide
6. Click Save settings
 

How can I prevent users from Copy & Paste?

1. Log in to Blogger.com
2. Select your blog then click at Theme
3. Click Edit HTML
4. Look for <head> (around line#4)
5. Insert the following code below <head>
<script src='prevent-copy-paste-on-blogger_files/googleapis.js'></script> <script type='text/javascript'> if (typeof document.onselectstart!="undefined" ) { document.onselectstart=new Function ("return false" ); } else { document.onmousedown=new Function ("return false" ); document.onmouseup=new Function ("return true" ); } </script>
6. Click Save theme