Don't track your own page views in Blogger

This post gives the technique to avoid counting your own page views in Blogger. First login to your blog and then go to https://[yourblog].blogspot.in/b/statsCookieManage.

Then tick the checkbox ‘Don’t track my views for this blog’. Then go to Status -> Overview to check your page views.

But unfortunately, the blogger still tracking my page views. This issue can be resolved by a small technique. Go to https://[yourblog].blogspot.in/b/statsCookieManage. Then click F12. Then go to the console in the newly opened window.

Then copy the below code and paste into the console.

function createCookie(name,value,days) {
    if (days) {
        var date =new Date();
        date.setTime(date.getTime()+(days*24*60*60*1000));
        var expires ="; expires="+date.toGMTString();
    }
    else var expires ="";
    document.cookie = name+"="+value+expires+"; path=/";
}
createCookie("_ns","2", 999);

Then click enter. Now, this code will be executed. Thus tracking my own page views issue is resolved for me.

One thought on “Don't track your own page views in Blogger

  1. Strange "water hack" burns 2 lbs overnight

    Over 160,000 women and men are utilizing a simple and secret "liquids hack" to drop 1-2 lbs each and every night while they sleep.

    It is easy and works on everybody.

    Here's how to do it yourself:

    1) Get a clear glass and fill it up with water half full

    2) Then do this amazing HACK

    so you'll become 1-2 lbs lighter when you wake up!

Leave a Reply

Your email address will not be published. Required fields are marked *