Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #804965

    Wo genau muss ich das einbauen?
    Wichtiger Hinweis für Ihren Webseiten-Administrator zu Google Analytics

    In 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

    #806165

    Hey 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,
    Basilis

    #895660

    Oh, 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

    #896009

    Hi,

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.