Google tag assistant reports: “Same web property ID is tracked twice”Google Analytics Social Tracking...
Why is the collector current I_c for a normal common collector BJT circuit LARGER than that of the Darlington transistor circuit configuration?
Who, if anyone, was the first astronaut to return to earth in a different vessel?
Bitcoin automatically diverted to bech32 address
"Cheaper by the dozen" phrase origin?
Is the "hot network questions" element on Stack Overflow a dark pattern?
How does a single engine tail wheel landing gear airplane turn when it is on the ground?
Lost citations on Scholar
if else in jq is not giving expected output
Centering, linebreaks and raggedright in underbrace text in mathmode
Why does Python copy numpy arrays where the length of the dimensions are the same?
How to make clear what a part-humanoid character looks like when they're quite common in their world?
Does an increasing sequence of reals converge if the difference of consecutive terms approaches zero?
Should corporate security training be tailored based on a users' job role?
How to write a character over another character
Negotiating 1-year delay to my Assistant Professor Offer
Animate an airplane in Beamer
Unions, aliasing and type-punning in practice: what works and what does not?
How bad is a Computer Science course that doesn't teach Design Patterns?
Was Opportunity's last message to Earth "My battery is low and it's getting dark"?
Bacterial growth inhibitors used in Deodorants
I hate taking lectures, can I still survive in academia?
Hands-Free Methods of Firing Arrows for Flying Soldiers
Is it possible to re-order a List of continous entries?
Run a command that requires sudo after a time has passed
Google tag assistant reports: “Same web property ID is tracked twice”
Google Analytics Social Tracking implementation. Is Google's example correct?Events are being tracked but no corresponding Goals (Goal conversions are equals zero)Multiple Google Analytic property ids in One Google Tag Manager tagRemove Google Analytic Spam via Google Tag ManagerGoogle Analytics Experiment - One Variant only has sessionsIs it possible to override the Browser name in Google Analytics?Google Analytics: Internal trackingGoogle Analytics not recording any hits on country subdomain. Google tag assistant reports net::ERR_ABORTEDHow to setup custom dimensions in Google Analytics?E-commerce tracking in wordpress using woo commerce
I've added the following Google Tag and Google Analytics code in my website. When i checked with Google Tag Assistant (Chrome Addon), I can find a yellow indicator against Google Analytics Tag which says to optimize "Same web property ID is tracked twice." As well as i can see "2 Pageview Requests"
How could i resolve this? Is that because I've added both Google Tag Manager and Google Analytics? I need both Google Tag Manager and Google Analytics run together smoothly without these kind of issues.
Google Tag Manager and Google Analytics Script added below
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27898392-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-27898392-1');
</script>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-27898392-1', 'auto');
ga('set', 'userId', '123456');
//Custom-User-ID - index 1
ga('set', 'dimension1', '123456');
//Custom-User-Name - index 2
ga('set', 'dimension2', 'jerome');
//Custom-User-Email - index 3
ga('set', 'dimension3', 'haijerome@gmail.com');
//Custom-User-Customer-ID - index 4
ga('set', 'dimension4', '123456');
//Custom-User-Customer-Name - index 5
ga('set', 'dimension5', 'Test');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
google-analytics google-tag-manager
New contributor
add a comment |
I've added the following Google Tag and Google Analytics code in my website. When i checked with Google Tag Assistant (Chrome Addon), I can find a yellow indicator against Google Analytics Tag which says to optimize "Same web property ID is tracked twice." As well as i can see "2 Pageview Requests"
How could i resolve this? Is that because I've added both Google Tag Manager and Google Analytics? I need both Google Tag Manager and Google Analytics run together smoothly without these kind of issues.
Google Tag Manager and Google Analytics Script added below
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27898392-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-27898392-1');
</script>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-27898392-1', 'auto');
ga('set', 'userId', '123456');
//Custom-User-ID - index 1
ga('set', 'dimension1', '123456');
//Custom-User-Name - index 2
ga('set', 'dimension2', 'jerome');
//Custom-User-Email - index 3
ga('set', 'dimension3', 'haijerome@gmail.com');
//Custom-User-Customer-ID - index 4
ga('set', 'dimension4', '123456');
//Custom-User-Customer-Name - index 5
ga('set', 'dimension5', 'Test');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
google-analytics google-tag-manager
New contributor
add a comment |
I've added the following Google Tag and Google Analytics code in my website. When i checked with Google Tag Assistant (Chrome Addon), I can find a yellow indicator against Google Analytics Tag which says to optimize "Same web property ID is tracked twice." As well as i can see "2 Pageview Requests"
How could i resolve this? Is that because I've added both Google Tag Manager and Google Analytics? I need both Google Tag Manager and Google Analytics run together smoothly without these kind of issues.
Google Tag Manager and Google Analytics Script added below
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27898392-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-27898392-1');
</script>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-27898392-1', 'auto');
ga('set', 'userId', '123456');
//Custom-User-ID - index 1
ga('set', 'dimension1', '123456');
//Custom-User-Name - index 2
ga('set', 'dimension2', 'jerome');
//Custom-User-Email - index 3
ga('set', 'dimension3', 'haijerome@gmail.com');
//Custom-User-Customer-ID - index 4
ga('set', 'dimension4', '123456');
//Custom-User-Customer-Name - index 5
ga('set', 'dimension5', 'Test');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
google-analytics google-tag-manager
New contributor
I've added the following Google Tag and Google Analytics code in my website. When i checked with Google Tag Assistant (Chrome Addon), I can find a yellow indicator against Google Analytics Tag which says to optimize "Same web property ID is tracked twice." As well as i can see "2 Pageview Requests"
How could i resolve this? Is that because I've added both Google Tag Manager and Google Analytics? I need both Google Tag Manager and Google Analytics run together smoothly without these kind of issues.
Google Tag Manager and Google Analytics Script added below
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27898392-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-27898392-1');
</script>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-27898392-1', 'auto');
ga('set', 'userId', '123456');
//Custom-User-ID - index 1
ga('set', 'dimension1', '123456');
//Custom-User-Name - index 2
ga('set', 'dimension2', 'jerome');
//Custom-User-Email - index 3
ga('set', 'dimension3', 'haijerome@gmail.com');
//Custom-User-Customer-ID - index 4
ga('set', 'dimension4', '123456');
//Custom-User-Customer-Name - index 5
ga('set', 'dimension5', 'Test');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
google-analytics google-tag-manager
google-analytics google-tag-manager
New contributor
New contributor
edited 5 hours ago
Stephen Ostermiller♦
68k1393250
68k1393250
New contributor
asked 9 hours ago
HaijeromeHaijerome
1114
1114
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Yes, just delete Google Analytics code from site, you should implement all tags you need through Google Tag Manager, That will solve your problem. Also i see you have Google Ads, if it is not, consider moving it to Google Tag Manager too, it will be easier for you to reconfigure it when ever you need it.
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "45"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Haijerome is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebmasters.stackexchange.com%2fquestions%2f121076%2fgoogle-tag-assistant-reports-same-web-property-id-is-tracked-twice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yes, just delete Google Analytics code from site, you should implement all tags you need through Google Tag Manager, That will solve your problem. Also i see you have Google Ads, if it is not, consider moving it to Google Tag Manager too, it will be easier for you to reconfigure it when ever you need it.
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
add a comment |
Yes, just delete Google Analytics code from site, you should implement all tags you need through Google Tag Manager, That will solve your problem. Also i see you have Google Ads, if it is not, consider moving it to Google Tag Manager too, it will be easier for you to reconfigure it when ever you need it.
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
add a comment |
Yes, just delete Google Analytics code from site, you should implement all tags you need through Google Tag Manager, That will solve your problem. Also i see you have Google Ads, if it is not, consider moving it to Google Tag Manager too, it will be easier for you to reconfigure it when ever you need it.
Yes, just delete Google Analytics code from site, you should implement all tags you need through Google Tag Manager, That will solve your problem. Also i see you have Google Ads, if it is not, consider moving it to Google Tag Manager too, it will be easier for you to reconfigure it when ever you need it.
answered 8 hours ago
Filozof666Filozof666
1165
1165
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
add a comment |
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
Hi thanks a lot for your answer, BTW is that not possible to make Google Analytics script work alongside with Google Tag Manager. Secondly how could i implement all the tags through google tag manager ? Kindly pardon my ignorance with this.
– Haijerome
8 hours ago
1
1
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
By that you are making a mess, Google Tag Manager is made for this, so you implement all your scripts through GTM. By doing that you have less JS code on your site, your site will work better and most important your tracking is well organised. Second, it depends on tags you want, but most of "important" tags are pre-Built in GTM where you can just add them and configure the way you need.
– Filozof666
7 hours ago
add a comment |
Haijerome is a new contributor. Be nice, and check out our Code of Conduct.
Haijerome is a new contributor. Be nice, and check out our Code of Conduct.
Haijerome is a new contributor. Be nice, and check out our Code of Conduct.
Haijerome is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Webmasters Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebmasters.stackexchange.com%2fquestions%2f121076%2fgoogle-tag-assistant-reports-same-web-property-id-is-tracked-twice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown