Topic: Google Analytics Code [SOLVED]

Hello,

the following question, on my Showkase website Google Analytics would have to be permanently changed to comply with the privacy policy.

Where can I permanently customize the Google Analytics code in Showkase?

He has to be like look at this website:

datenschutzbeauftragter-info.de/fachbeitraege/google-analytics-datenschutzkonform-einsetzen

under: "Finaler Code inkl. IP-Anonymisierung und Opt-Out-Cookie"

Thanks in advance

Holger

Re: Google Analytics Code [SOLVED]

You can add the code (without the <script> tags) to your theme's 'custom.js' JavaScript file and it will be included (and run) in all your Showkase pages.

For example, if you use the Boma theme, then add the following code (changing the 2 instances of UA-XXXXXXXX-X to your own Google Analytics ID) to your site's '_themes/boma/js/custom.js' file.

var gaProperty = 'UA-XXXXXXXX-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; 
    alert('Das Tracking ist jetzt deaktiviert'); 
} 
(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','https://www.google-analytics.com/analytics.js','ga'); 

ga('create', 'UA-XXXXXXXX-X', 'auto'); 
ga('set', 'anonymizeIp', true); 
ga('send', 'pageview'); 

I hope this helps.

3 (edited by Holger 2018-04-25 13:22:03)

Re: Google Analytics Code [SOLVED]

Thanks in advance. I have corrected the file custom.js (for me in the directory of the used theme Kosel). If I now look at the source code on my website, the code is not there. Here's the link to my page: [Link deleted.] (Please delete the link after clarifying the problem).
Do I have to push the change somehow?

Thanks Holger

-------------------------------------------------------------------

I've tested the feature on google analytics now and it works.

Thank you for the quick help!

Re: Google Analytics Code [SOLVED]

If I now look at the source code on my website, the code is not there.

Just to clarify, the code is not added directly to the HTML page but the 'custom.js' file (where the code is located) is loaded into every Showkase page via the following line of code:

<script src="/1/_themes/kosel/js/custom.js"></script>

I've tested the feature on google analytics now and it works.

That's great! Thank you for letting me know.

Thank you for the quick help!

You're welcome!

(I've deleted the link from your post as requested.)