-
AuthorPosts
-
June 7, 2017 at 9:46 am #804965
Wo genau muss ich das einbauen?
Wichtiger Hinweis für Ihren Webseiten-Administrator zu Google AnalyticsIn den Browsern mobiler Endgeräte, z.B. Smartphones oder Tablets, funktionieren Add-Ons zum Unterdrücken des Google-Analytics-Nutzertrackings nicht in jedem Fall. Sie müssen auf Ihrer Webseite auch diesen Nutzern die Möglichkeit geben, die Erfassung ihres Verhaltens durch Google Analytics zu deaktivieren. Dafür ist in Ihrer Datenschutzerklärung am Ende des Abschnitts „Datenschutzerklärung für die Nutzung von Google Analytics – Widerspruch gegen Datenerfassung“ ein zusätzlicher Javascript-Link integriert. Beim Klick auf diesen Link wird beim Nutzer ein Cookie erzeugt, welcher das Nutzertracking in dem Browser des Nutzers für das mit Ihrer Webseite verknüpfte Google-Analytics-Account deaktiviert.
Damit dieser Link funktioniert, müssen Sie zunächst folgenden HTML-Quellcode mit Javascript VOR Ihrem Google Analytics Tracking Code platzieren.
Ersetzen Sie zudem die Zeichenfolge UA-XXXXXXX-X durch Ihre Google Analytics Tracking ID.
<script type=”text/javascript”>
var gaProperty = ‘UA-XXXXXXX-X’;
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>Danke Simon
June 9, 2017 at 6:06 pm #806165Hey simonac,
I have assigned the ticket to our German speaking supported but if you want some faster assistance, you can always ask the question in English and we will be happy to help.
Best regards,
BasilisJanuary 10, 2018 at 1:53 pm #895660Oh, die Antwort würde mich auch interessieren!
“For this link to work, you must first place the following HTML source code with Javascript BEFORE your Google Analytics tracking code” – Where can I place the following code?:
<script type=”text/javascript”>
var gaProperty = ‘UA-XXXXXXX-X’;
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>Thank you and kind regards,
Susanna
January 11, 2018 at 7:46 am #896009Hi,
Please try this in your child theme’s functions.php file:
function susanna_tracking_code(){ ?> <script type=”text/javascript”> var gaProperty = ‘UA-XXXXXXX-X’; 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> <?php } add_action('wp_head', 'susanna_tracking_code', 1);
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.