Skip to content

Instantly share code, notes, and snippets.

@paul-hph
Last active May 4, 2019 08:04
Show Gist options
  • Save paul-hph/4b8e92812d2d7c8cdc5d to your computer and use it in GitHub Desktop.
Save paul-hph/4b8e92812d2d7c8cdc5d to your computer and use it in GitHub Desktop.
Universal Analytics Code AnonymizeIP + Opt-Out
<script>
<!-- Google Analytics -->
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXX-X', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Google Analytics Opt-Out-Code -->
<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-XXXX-X';
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
// Opt-out function
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
<!-- End Google Analytics Opt-Out-Code -->
</script>
@adhummer
Copy link

adhummer commented May 4, 2019

Interessant, dich hier zu treffen. :) Steven

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment