Mobile app version of vmapp.org
Login or Join
Vandalay111

: Problem to stop Google-Analytics from tracking my website In June 2012 I added my website (a blog that I host on my own server) to Google-Analytics. In January 2013 I decided to use Piwik

@Vandalay111

Posted in: #GoogleAnalytics

In June 2012 I added my website (a blog that I host on my own server) to Google-Analytics. In January 2013 I decided to use Piwik instead of Google-Analytics.

So I removed my website from the Google Webmaster Tools page.
I also removed the Google's script from the footer of my webpages.
I checked several times that there are no links to any Google Tools (Google Fonts, Google Analytics) in my code.

However Ghostery (Add-on for Firefox) shows that Google-Analytics still tracks my website. I checked the following pages on Google:
The page google.com/dashboard/?pli=1 (Dashboard) lists my website (logically it shouldn't as I removed my website from it) but when I click on "Manage my sites" the page google.com/webmasters/tools/home?hl=en&authuser=0 (Webmaster Tools - Home) my website is not listed any more and there is only a form to add a new site.
The page google.com/analytics/ invites me to sign up and then doesn't list any website and shows a form to add a website.

Do you have any idea about what I should do to stop Google-Analytics to track my website for good?
Thanks for your help.

ps) this is my first message on Stack Exchange, I hope my English is not too bad.
Thanks you all for making this big community exist. Keep up the good work.



Update:
Could the meta <meta name="google" content="notranslate" /> in my code be the reason of the tracking?
Answer: no, it's not related.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

3 Comments

Sorted by latest first Latest Oldest Best

 

@Cody1181609

Hi agree that you need to remove the similar code like the one below. This can be found in the header area. If you are using Wordpress it is basically inserted under header.php.


var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();


If it is still working then basically there is another code in the website hidden. In Wordpress, there are a lot of themes that integrated some kind of a plug in that you just need to embed some code in the option.


Check the SEO plug ins if it allows or enable analytics to track your website. You can disable it or just remove the code under it.
Check the theme options if there are options in the header area that you can embed the analytics code in it.

10% popularity Vote Up Vote Down


 

@Angela700

There is no Google analytics on your own site anymore, however your site iFrames content from vimeo.com, which contains google analytics tracking.

<iframe src="http://player.vimeo.com/video/" webkitallowfullscreen="" allowfullscreen="" frameborder="0" height="315" width="560"></iframe>


This site has GA tracking, and your plugin is detecting the tracking from that site. So your site itself won't be tracked in Google analytics*, if you absolutely want to stop any reference to analytics from your site remove the iFrame'ed content.

*The only exception being users who have a old copy of your page in their webbrowsers cache which still contains GA, this will still send a ping to the Google servers but as you disabled your site their it won't be tracked.

10% popularity Vote Up Vote Down


 

@BetL925

To stop Google Analytics tracking your website, you can delete Google's script in your webpages.

Script looks like this:

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>


Without this script, Google can't track your website anymore.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme