Wiem, że ten post jest bardzo stary, ale żadne z rozwiązań nie spełniło moich potrzeb. Nie tylko chciałem usunąć prace deweloperskie z GA (i FB), ale także chciałem, aby niektórzy ludzie z firmy nie byli liczeni w GA i FB. Chciałem więc stosunkowo łatwej metody dla tych ludzi, aby wykluczyć się z analityki bez wtyczki lub wykluczyć IP domeny (gdy ludzie z laptopami wędrują).
Utworzyłem stronę internetową, do której użytkownicy mogą przejść i kliknąć link, aby zrezygnować ze śledzenia GA i FB. Umieszcza plik cookie dla witryny. Następnie sprawdzam ten plik cookie, aby określić, czy powinniśmy wysyłać dane do GA i FB.
Pierwotnie założyłem to na stronie o nazwie Dahlia, która jest butikowym producentem przedmiotów na greckie prawosławne wesela i chrzty .
Oto kod:
W nagłówku wszystkich stron umieszczam następujący kod:
<script>
//put in your google analytics tracking id below:
var gaProperty = 'UA-XXXXXXXX-X';
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
window['ga-disable-UA-7870337-1'] = true; //This disables the tracking on Weebly too.
} else {
//put in your facebook tracking id below:
fbq('init', 'YYYYYYYYYYYYYYY');
fbq('track', 'PageView');
}
</script>
Pamiętaj, aby dodać identyfikatory śledzenia GA i FB w przewidzianych miejscach. Zostało to pierwotnie napisane dla witryny Weebly (Shopping CMS). Jeśli więc nie korzystasz z Weebly, możesz usunąć wiersz, który wspomina o weebly.
Następnie utworzyłem nową stronę internetową o nazwie „do-not-track” z następującym kodem w nagłówku:
<script>
//put in your own google analytics tracking id below:
var gaProperty = 'UA-XXXXXXXX-X';
var disableStr = 'ga-disable-' + gaProperty;
// Opt-out function
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
gaOptoutCheck();
}
// Check Opt-out function
function gaOptoutCheck() {
var name = "ga-disable-"+gaProperty+"=";
var ca = document.cookie.split(';');
var found = "false";
for(var i=0; i<ca.length; i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1);
if (c.indexOf(name) == 0) found = "true";
}
if (found == "true") alert("Cookie is properly installed");
else alert("COOKIE NOT FOUND");
}
</script>
I następujący kod w treści:
<a href="javascript:gaOptout()">Click here to opt-out of Google and Facebook Analytics</a>
<br><br>
Please visit this page on every computer, laptop, phone, tablet, etc. that you use;
and for all browser you use on each of those devices.
<br><br>
If you ever remove cookies from browser, you will need to repeat this process for that browser.
<br><br><br>
<a href="javascript:gaOptoutCheck()">
Click to check if cookie is set</a>
<br><br>
Oto mój pełny opis witryny Weebly
Mam nadzieję, że to komuś pomoże!