Thursday, January 12, 2017

How to Disable copy text from your blog

GurusGoonsBlog Saying Hello to you guys
I want to teach you bloggers how to disable copy text from your blog


  • Firstly login to your blogger dashboard 
  • Click on template 
  • Click Edit template 
  • Search for <Head>
  • Crtl+F search for Head open Tag <Head>
  • This Tag only appear only one just paste the code below <Head>
  • Note: Don't change anything 

<!--- www.GurusGoons.com Disable Copy and Paste-->
<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>
Continue reading

Wednesday, January 11, 2017

How to install on-screen navigation bottom to your Android [Trick]

Hello
Gurusgoons Blog

How to install on-screen navigation bottom to your Android phone

  1. Firstly Download virtual softkey

Install it and Open it
Firstly It will pop-up  an setting for you to get access to the on-screen navigation bottom
Click on that GO TO SETTINGS

Click virtualsoftkeys
Then turn it ON
Go back to the App
Just Click I knew
And it will start showing the on-screen navigation bottom on your Android


                                            Successful
Please comment if it work for you and if is not working for make a comment make we solve the problem out for you.
Continue reading

Sunday, January 8, 2017

How to install random post for Blogger Blog

Hello
GurusGoons is here to teach you how to install Random post for Blogger
It necessary to have random post on one's blog it make things easier for visitors
Now How to install random post for Blogger

Firstly Login to your blogger dashboard 
  1. Go to layout 
  2. Click on add widget 
  3. Choose Html/Script
Paste the code below in the text area
<style>
#random-posts img {
    border-radius: 10px;
    float: left;
    margin-right: 5px;
    width: 75px;
    height: 75px;
    background-color: #F5F5F5;
    padding: 3px;
    transition: all 0.2s linear 0s;
}

#random-posts img:hover {
    opacity: 0.6;
}

ul#random-posts {
    list-style-type: none;
    padding: 0px;
}

#random-posts a {
    font-size: 12px;
    text-transform: uppercase;
    padding: 0px auto 5px;
}

#random-posts a:hover {
    text-decoration: none;
}

.random-summary {
    font-size: 11px;
    background: none;
    padding: 5px;
    margin-right: 8px;
}

#random-posts li {
    margin-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
    padding: 4px;
}
</style>
<ul id='random-posts'>
<script type='text/javaScript'>
var randomposts_number = 5;
var randomposts_chars = 110;
var randomposts_details = 'yes';
var randomposts_comments = 'Comments';
var randomposts_commentsd = 'Comments Disabled';
var randomposts_current = [];
var total_randomposts = 0;
var randomposts_current = new Array(randomposts_number);

function randomposts(json) {
    total_randomposts = json.feed.openSearch$totalResults.$t
}
document.write('<script type=\"text/javascript\" src=\"/feeds/posts/default?alt=json-in-script&max-results=0&callback=randomposts\"><\/script>');

function getvalue() {
    for (var i = 0; i < randomposts_number; i++) {
        var found = false;
        var rndValue = get_random();
        for (var j = 0; j < randomposts_current.length; j++) {
            if (randomposts_current[j] == rndValue) {
                found = true;
                break
            }
        };
        if (found) {
            i--
        } else {
            randomposts_current[i] = rndValue
        }
    }
};

function get_random() {
    var ranNum = 1 + Math.round(Math.random() * (total_randomposts - 1));
    return ranNum
};
</script>
<script type='text/javaScript'> 
function random_posts(json) {
    for (var i = 0; i < randomposts_number; i++) {
        var entry = json.feed.entry[i];
        var randompoststitle = entry.title.$t;
        if ('content' in entry) {
            var randompostsnippet = entry.content.$t
        } else {
            if ('summary' in entry) {
                var randompostsnippet = entry.summary.$t
            } else {
                var randompostsnippet = "";
            }
        };
        randompostsnippet = randompostsnippet.replace(/<[^>]*>/g, "");
        if (randompostsnippet.length < randomposts_chars) {
            var randomposts_snippet = randompostsnippet
        } else {
            randompostsnippet = randompostsnippet.substring(0, randomposts_chars);
            var whitespace = randompostsnippet.lastIndexOf(" ");
            randomposts_snippet = randompostsnippet.substring(0, whitespace) + "&#133;";
        };
        for (var j = 0; j < entry.link.length; j++) {
            if ('thr$total' in entry) {
                var randomposts_commentsnum = entry.thr$total.$t + ' ' + randomposts_comments
            } else {
                randomposts_commentsnum = randomposts_commentsd
            }; if (entry.link[j].rel == 'alternate') {
                var randompostsurl = entry.link[j].href;
                var randomposts_date = entry.published.$t;
                if ('media$thumbnail' in entry) {
                    var randompoststhumb = entry.media$thumbnail.url
                } else {
                    randompoststhumb = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvBKOBRbEp57loHPSGPlhxOoAQtXy7K-Xf78J6_bSlynnIE_RY3XHHzhQq6J0r5XpY6-s-MLofYWusVxWLluSSJN0uVFSKwS7AfmnoV92-QTnnQUw7GGYSLOdL3CyU4l9N-UeLStJn_R4/s1600/no_thumb.png"
                }
            }
        };
        document.write('<li>');
        document.write('<a href="' + randompostsurl + '" rel="nofollow"><img alt="' + randompoststitle + '" src="' + randompoststhumb + '"/></a>');
        document.write('<div><a href="' + randompostsurl + '" rel="nofollow">' + randompoststitle + '</a></div>');
        if (randomposts_details == 'yes') {
            document.write('<span><div  class="random-info">' + randomposts_date.substring(8, 10) + '.' + randomposts_date.substring(5, 7) + '.' + randomposts_date.substring(0, 4) + ' - ' + randomposts_commentsnum) + '</div></span>'
        };
        document.write('<br/><div class="random-summary">' + randomposts_snippet + '</div><div style="clear:both"></div></li>')
    }
};
getvalue();
for (var i = 0; i < randomposts_number; i++) {
    document.write('<script type=\"text/javascript\" src=\"/feeds/posts/default?alt=json-in-script&start-index=' + randomposts_current[i] + '&max-results=1&callback=random_posts\"><\/script>')
};
</script>
</ul>

Then click on save
Successful
Happy blogging 😁
Inconclusion
If you have any complain Please comment
Recommend

Happy Blogging 😁....
Continue reading

Saturday, December 31, 2016

How to install cool recent post widget for blogger

Hello 
Gurusgoons Blog will teach you how to add 4 numbered recent post widget
  1. Login to your dashboard 
  2. Click on layout 
  3. Click add widget 
  4. Choose html/script
  5.  
  6. Copy the post below and paste it there 

  7. Now click save 
  8. Successful .
<script type="text/javascript">
function showlatestpostswiththumbs(t){document.write('<ul class="recent-posts-container">');for(var e=0;e<posts_no;e++){var r,n=t.feed.entry[e],i=n.title.$t;if(e==t.feed.entry.length)break;for(var o=0;o<n.link.length;o++){if("replies"==n.link[o].rel&&"text/html"==n.link[o].type)var l=n.link[o].title,m=n.link[o].href;if("alternate"==n.link[o].rel){r=n.link[o].href;break}}var u;try{u=n.media$thumbnail.url}catch(p){s=n.content.$t,a=s.indexOf("<img"),b=s.indexOf('src="',a),c=s.indexOf('"',b+5),d=s.substr(b+5,c-b-5),u=-1!=a&&-1!=b&&-1!=c&&""!=d?d:"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2McZBe9TjF6iSedvt5TXen8qJa0aScOcFUvsm0xBRhyphenhyphen8P_mZIs9ewEhwfd89jj7pORUCFOyhKf4rONMrhdk6mzr5xSfIz5eZiigsL-nXfl6xIfsDOT3b6x32hiW-lV4rmWATuXIlkEyY1/s1600/no-thumb.png"}var h=n.published.$t,f=h.substring(0,4),w=h.substring(5,7),v=h.substring(8,10),A=new Array;A[1]="Jan",A[2]="Feb",A[3]="Mar",A[4]="Apr",A[5]="May",A[6]="Jun",A[7]="Jul",A[8]="Aug",A[9]="Sep",A[10]="Oct",A[11]="Nov",A[12]="Dec",document.write('<li class="recent-posts-list">'),1==posts_date&&document.write('<div class="post-date">'+A[parseInt(w,10)]+" "+v+" "+f+"</div>"),1==showpoststhumbs&&document.write('<a href="'+r+'"><img class="recent-post-thumb" src="'+u+'"/></a>'),document.write('<div class="recent-post-title"><a href="'+r+'" target ="_top">'+i+"</a></div>");var g="",k=0;document.write('<div class="recent-posts-details">'),1==showcommentslink&&(1==k&&(g+=" <br> "),"1 Comments"==l&&(l="1 Comment"),"0 Comments"==l&&(l="No Comments"),l='<a href="'+m+'" target ="_top">'+l+"</a>",g+=l,k=1),1==readmorelink&&(1==k&&(g+=" | "),g=g+'<a class="readmorelink" href="'+r+'" class="url" target ="_top">Read more</a>',k=1),document.write(g),document.write("</div>"),document.write("</li>")}document.write("</ul>")}
</script>
<script type="text/javascript">
var posts_no = 5;
var showpoststhumbs = false;
var readmorelink = true;
var showcommentslink = true;
var posts_date = true;
</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs"></script>
<a style="font-size: 9px; color: #CECECE; float: right; margin-top: 5px;" href="http://www.gurusgoons.com/2016/12/how-to-install-cool-recent-post-widget.html?m=1">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
<style type="text/css">
img.recent-post-thumb {padding: 2px; width:35px;height:35px;float:right;margin: -14px 0px 0px 5px; border: 1px solid #cea5ac; border-radius: 10%;}
.recent-posts-container {font-family: 'Oswald', sans-serif;  float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container li {padding:5px 0px;min-height:65px; list-style-type: none; margin: 0px 10px 5px 35px;}
ul.recent-posts-container {counter-reset: countposts;list-style-type: none;}
ul.recent-posts-container li:before {content: counter(countposts,decimal);counter-increment: countposts;z-index: 2;position:absolute; left: 5px; font-size: 16px;color: #4D4D4D;background: #F7F7F7;padding: 9px 14px; border: 1px solid #efefef;}
.recent-posts-container a { text-decoration:none; }
.recent-posts-container a:hover{color: #4DACE3;}
.post-date {color:#e0c0c6; font-size: 11px; }
.recent-post-title a {font-size: 13px; text-transform: uppercase; color: #5C4D4D;}
.recent-post-title { margin: 5px 0px; }
.recent-posts-details {border-top: 4px solid #AC707A; margin-top: 5px; padding-top: 5px;}
.recent-posts-details a{ color: #888;}
a.readmorelink {color: #4DACE3;}
</style>
Continue reading

Tuesday, November 8, 2016

How To Create Privacy Policy Page For Blogger Blog

A Privacy Policy is a disclosure information about how the site gathers any information from the visitors and about the ads served.
It provides a credibility and trustworthiness to your blog. Many ad serving programs including Google AdSenselooks for a privacy policy on your blog before approving you in their advertising network.
Hence, it becomes a necessity to add a privacy policy page to your blog.
In this article, I will tell you how to create a privacy policy page and add it to your blog.

Creating A Privacy Policy Page For Your Blog

You can either create a privacy policy yourself if you have required knowledge. However, most of the bloggers do not know how to create a perfect privacy policy for their blogs. In that case, there are several third-party privacy policy generators which will do the work for you for free. In this tutorial, I am using one such service provided by SerpRank.com
  1. Go to the SerpRankprivacy policy generatorpage.
  2. The page will ask for your Site URL and Email Address.
  3. If your blog use cookies (if you are serving advertising, your blog is most likely using it), select Yes, we use cookies option.
  4. In the advertiser information, select the advertising solutions you use to monetize your blog.
  1. After filling up the form, select Crete my Privacy policy. You have just created a privacy policy for your blog. Now Copy this information to a text document.
  2. How To Add The Generated Privacy Policy To Your Blog?

  3. For Blogger Blog: Open your Blogger Dashboard > Pages
  4. Click on create new page
  5. Paste the privacy policy you copied
  6. Publish the page 
You have successfully created and published privacy policy for your blog.

Conclusion

By adding a privacy policy to your blog, you will increase the trustworthiness of your readers. It’s a good practice to have a privacy policy visible to your readers. Even Google AdSense in their terms and conditions require you to have a privacy policy for your blog. So, go and make one before you apply for any advertising network to make money from your blog.
📑Recommended 👇👇👇

How to use notepad to build a website on pc


Happy Blogging
I hope this post is useful 
Comment .
Share to friends
And use smiley reaction
Continue reading

Saturday, November 5, 2016

How to Add a Cute Smiley Reaction Buttons to Blogger blog

Hello

Debotech again

 I love Emotions, if you are reading this post am sure you do love them too. I have been using this amazing Smiley reaction button on my blog for a while now so I finally decided to share it with you guys. Today I am going to show youhow to add a Cute Smiley reaction button to a blogger blog using Vicomi.


Blogger is one of the most popular blogging platforms nowadays. Many bloggers felt limited with what blogger has to offer then they upgrade to other platform where they can twist their whole blog design the way they want. Today, I want to tell you that blogger can do more. 

Reaction buttons has been introduced by blogger a longtime ago but not well designed like we wanted, but today this widget is back and better all thanks to Vicomi. Reaction buttons is a great widget that makes your readers leave a feedback just by hitting one of the reaction buttons. It allows you to express how you feel about what you just finish reading.
Are you tired of seeing your blog contents with no comment?  I know sometimes you even felt like nobody is reading them, its time you make use of this cute Smiley reaction buttons. Now I will show you how to install this button on just six steps.
📌Goto Vicomi

📌 Fill the sign up form by inputing your Blog title, Blog URL, Email address and Password.





📌Now from the list of Emotions designs 
available, choose one that suites your taste and click on Done



📌Now you will be provided with a bunch of Javascript code, copy all the code and keep it somewhere.


📌 Goto your blogger dashboard >> Templates>> Edit Html. Now search for<data:post.body/> this code might appear more than once, just stop at the second one.

📌 Now paste the javascripts codes you copied just below <data:post.body/> , then hit the Save Template button and view your blog posts.

Viola!! We have successfully install a cute emotion reaction button below blog posts on blogger. 

Do you love this widget? What is your reaction on this post? Kindly use the comment section below or use our cute reaction buttons.

  1. Share and comment 
  2. Comment if you don't get it right
  3. Source :FixmansionBlog
Continue reading