Posts under category Google

When creating a code snippets in Google Ads to track conversions on a landing page, I found that all the Functions have the same name: gtag_report_conversion(url)

Since I have 2-4 of these functions per page, I want to rename each function so that all two to four links don't call the same function.

This is the original code output from Google Ads for two links (I put xxxxx where my account number is located):

<script> function gtag_report_conversion(url) {   var callback = function () {     if (typeof(url) != 'undefined') {       window.location = url;     }   };   gtag('event', 'conversion', {       'send_to': 'AW-xxxxxxxx/v__WCOP96KwBEMGY46ID',       'event_callback': callback   });   return false; } </script> 
<script> function gtag_report_conversion(url) {   var callback = function () {     if (typeof(url) != 'undefined') {       window.location = url;     }   };   gtag('event', 'conversion', {       'send_to': 'AW-xxxxxxxx/q5SwCMKl9KwBEMGY46ID',       'event_callback': callback   });   return false; } </script> 

Can I rename each function with an _a and _b so that my link calls them like this?

<a href="link" onclick="gtag_report_conversion_a();">Link ONE</a>

<a href="link" onclick="gtag_report_conversion_b();">Link TWO</a>

Each function has a unique number after my account number, so I want to make sure the reports are accurate.

Google recently changed to this new format, so there is limited information on changing the function names nowadays -- thank you for any help anyone can provide!

Terminating app due to uncaught exception 'GADInvalidInitializationException', reason: 'The Google Mobile Ads SDK was initialized without an application ID. Google AdMob publishers, follow instructions here: https://googlemobileadssdk.page.link/admob-ios-update-plist to set GADApplicationIdentifier with a valid App ID. Google Ad Manager publishers, follow instructions here: https://googlemobileadssdk.page.link/ad-manager-ios-update-plist

I have created a report with Data Studio taking values from GA and I have defined a table with several data like age, sex, hour, total users and transaccions.

At the end of the table it shows the total of transactions which are 8 and this data is correct. But If I seek this transactions in the table I only found 2.

Here you can see the table ordered by transactions and you can see how there is only 2.

And these are the sources of the data of the table:

Am I doing something wrong? How can I get the eight transactions in their own column?

Edit I:

The table are ordered descendent by the column "Transactions" (Transacciones) so all the transactions are showed in the first rows. In this case, we've got only 2 transactions.

I have created a Google Ads campaign and for all the url's I have defined an standard url to track them. These url are for example: http://www.example.com/?url_source=s1&utm_medium=m1&utm_campaign=c1. I use this page https://ga-dev-tools.appspot.com/campaign-url-builder/ to create them.

But, when I go to Acquisition > All the traffic > Source/Medium I see that most of these url are not tracked correctly and are tracked like google/cpc and not with the values given in variables utm_source and utm_medium

What happen? How can I do to track correctly all the url's?

This is a question addressed to users of Google Ads data in BigQuery.

My goal is to create a dashboard displaying all ad extensions (Sitelinks, callouts ...) and their results.

In BigQuery, we have this dataset called "rawdata" imported from Google Ads. I noticed that ad extensions have specific tables and are not in generic tables like "p_Ad" or "p_AdStats". Instead we can find them in p_ExtensionsCallouts, p_ExtensionsSitelinks.

But in p_ExtensionsSitelinks we only find ad texts, no figures, no results. So I need to link to another table containing results. CreativeId in p_AdStats seemed to be the key between my results and the id in my sitelinks table.

I tried to join p_AdStats to p_ExtensionsSitelinks, on p_AdStats.CreativeId = p_ExtensionsSitelinks.Id, but no success. Id in p_ExtensionsSitelinks seems to be a very specific id, not found in p_Ad.

Screenshot of p_ExtensionsSitelinks Schema

Does anyone have already encountered this problem please?

Thank you very much.

Cheers, Julien