最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to set an Google Opt Out Cookie FOR GOOGLE ANALYTICS 4 - not universal one - the new ga4 - Stack Overflow

programmeradmin2浏览0评论

For a new project I want to use Google Analytics 4.

Until today I was using the normal Google Analytics and on my privay policy page I have had an Google Opt Out Cookie.
This was implement by an simple JavaScript Code.
The code was loooking like this:

<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-XXXX-Y';

// 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;
}
</script>

And with this code I was able to set an Google Opt Out Cookie on the page I wantet

<a href="javascript:gaOptout()">Click here to opt-out of Google Analytics</a>

So now I have the problem, that with the new ga4 this is not working. On the developer page of ga4 there is an code to disable ga4.

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src=";></script>
<script>
  window['ga-disable-MEASUREMENT_ID'] = true;
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'MEASUREMENT_ID');
</script>

How I have to set up the Button Link to disable GA4?
Anybody can help me here???

Thanks already, stay healthy and enjoy your Life :)

For a new project I want to use Google Analytics 4.

Until today I was using the normal Google Analytics and on my privay policy page I have had an Google Opt Out Cookie.
This was implement by an simple JavaScript Code.
The code was loooking like this:

<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-XXXX-Y';

// 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;
}
</script>

And with this code I was able to set an Google Opt Out Cookie on the page I wantet

<a href="javascript:gaOptout()">Click here to opt-out of Google Analytics</a>

So now I have the problem, that with the new ga4 this is not working. On the developer page of ga4 there is an code to disable ga4.

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager./gtag/js?id=MEASUREMENT_ID"></script>
<script>
  window['ga-disable-MEASUREMENT_ID'] = true;
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'MEASUREMENT_ID');
</script>

How I have to set up the Button Link to disable GA4?
Anybody can help me here???

Thanks already, stay healthy and enjoy your Life :)

Share Improve this question edited May 28, 2021 at 4:00 oguz ismail 51k16 gold badges59 silver badges78 bronze badges asked Dec 13, 2020 at 11:10 DigitalADigitalA 711 silver badge4 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

You actually have most of the pieces here.

So get your GA4 measurement ID, something that looks like: 249888888

The piece of code in the GA4 tag that disables measurement is this:

window['ga-disable-MEASUREMENT_ID'] = true;

What you need to replace MEASURMENT_ID with your own ID, in this example: 249888888

Combine this with your own code:

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager./gtag/js?id=249888888"></script>
<script>
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-249888888';
if (document.cookie.indexOf(disableStr + '=true') > -1) {
   window['ga-disable-249888888'] = true; //this is what disables the tracking, note the measurement ID
}
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', '249888888');
</script>

// Opt-out function (this function is unchanged)
function gaOptout() {
  document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
  window[disableStr] = true;
}
</script>

For Google Analytics 4 I had to indicate the Measurement-ID with 'G-' Prefix.

window['ga-disable-G-XXXXXXXXXX']=true;

As you can see it here: https://support.google./analytics/answer/9539598?hl=en

In the example above it must be:



    ...
    // Disable tracking if the opt-out cookie exists.
    var disableStr = 'ga-disable-G-249888888';
    if (document.cookie.indexOf(disableStr + '=true') > -1) {
    ...


与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论