Skip to content

Instantly share code, notes, and snippets.

@adhummer
Last active May 4, 2019 08:24
Show Gist options
  • Save adhummer/17ea51b396cc30262000b973c3e2d25f to your computer and use it in GitHub Desktop.
Save adhummer/17ea51b396cc30262000b973c3e2d25f to your computer and use it in GitHub Desktop.
Google Analytics Opt-Out
<script>
var gaProperty = 'XXXXXX';
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
</script>
@adhummer
Copy link
Author

adhummer commented May 4, 2019

Add this to the privacy policy:

Alternativ verhindern Sie mit einem Klick auf <a onclick=”alert(‘Google Analytics wurde deaktiviert’);” href=”javascript:gaOptout()”> diesen Link, dass Google Analytics innerhalb dieser Website Daten über Sie erfasst. Mit dem Klick auf obigen Link laden Sie ein „Opt-Out-Cookie“ herunter. Ihr Browser muss die Speicherung von Cookies also hierzu grundsätzlich erlauben. Löschen Sie Ihre Cookies regelmäßig, ist ein erneuter Klick auf den Link bei jedem Besuch dieser Website vonnöten.

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