Posts tagged with google-analytics

My question is related to the connection of google analytics data with google ads data. I have auto-tagging enabled in GA and Google Ads. And I have "Allow manual utm_parameters overwrite auto-tagging parameters in GA". In the link I have manually specified the utm parameters that are different to google/cpc and when clicking on the ad gclid is appended. But I can't see any sessions assigned to any campaign in the report.

Do someone have any ideas why could it happen? My utm_parameters for source / medium are different from google / cpc. Could it be the reason?

Thanks in advance

I just make one App campaign from google adword.

having an issue regarding user came from ads campaign those having not set referrerUrl and wrong UTM params

I have used new install referrer client provided android library

everything working fine I got a custom UTM params from our website. but only issue that user came from Ad campaign

com.android.installreferrer:installreferrer:2.2 

my code as like below

I just set default organic if it return not set

I don't know what I have missing. but that particular flow not working

everything working fine with custom URL and a user came from directly PlayStore. the only problem that the user came from adcampaign

I am using Google Ads to get some traffic to my website.

I am tracking the conversions through Google Analytics

I can see my conversions on Google Analytics, but Google Ads is not counting any conversion

Here the goal configuration

The 36 conversions Which I have from Google are traffic through Google Ads and not organic. But on my Google Ads dashboard, I have 0 conversions.

The website is built with react, which could be a little tricky sometimes with tags, and Google Analytics is loaded through Google Tag Manager. I do not think the problem is coming from GTM configuration as we do have the conversions on Google Analytics

I have added the gtag like following

<!-- Global site tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-189297876-1"></script> <script>   window.dataLayer = window.dataLayer || [];   function gtag(){dataLayer.push(arguments);}   gtag('js', new Date());   gtag('config', 'UA-xxxxxxxxx-x');   gtag('config', 'G-xxxxxxxxxx');   gtag('config', 'AW-xxxxxxxxx'); </script> 

Here I use the Google Analytics, the AdWords Conversion and the Global-ID.

When I check it with the Google Tag Assistant Plugin of Chrome, I get

I don't know, if this is a problem (the Message "Multiple installations of Global site tag (gtag.js) detected"). Is it only there one time.

I'm a back end developer, sometimes a little fronted, but not a SEO related expert at all. Now I have to make a full website from top to bottom and I'm stuck with the Google stuff. First I created a Google Analytics profile, I got the srcipt that I needed to hardcode to all my site.

    <script async src="https://www.googletagmanager.com/gtag/js?id=G-MEASUREMENT_ID></script>     <script>       window.dataLayer = window.dataLayer || [];       function gtag(){dataLayer.push(arguments);}       gtag('js', new Date());       gtag('config', 'G-MEASUREMENT_ID');     </script> 

However, a little while later, I started to use Google Ads and it recommended to connect my Analytics page to the Ads page, so I connected them and I got another code that I needed to insert.

The code snippet is almost the same, except the two MEASUREMENT_ID, because now I got a UA-MEASUREMENT_ID.

So, do I have to use both snippets, or just one? If so, which MEASUREMENT_ID should I use? Or am I screwed up something?

Thanks all the help