Converting Google Ads tag to Next Third Party sendGAEvent
google analytics - Why isn't gtag sending ad conversion tracking? - Stack Overflow
"conversion" vs "purchase" events in Google Ads GTAG / event snippet
google analytics - gtag.js event tracking - position of the tracking code snippets - Stack Overflow
Videos
Using Google Tag Manager to Send Conversion Event to Google Ads?
I have a Custom HTML Tag configured in GTM that listens for a JavaScript event for the contact form being submitted. It then sends calls window.dataLayer.push and sends the Google Analytics event. I need to also send this conversion to Google Ads. Can I use the following or something similar to it?
window.dataLayer.push({
"event" : "conversion",
"send_to": "AW-33************"
})
Or if not what would I pass to the push function to send the conversion to Google Ads?
Thanks,
John
Hi guys
I wanted to ask what the difference is between "gtag('event', 'conversion', { ...}); " and " gtag('event', 'purchase', { ...}); " in Google Ads Conversion event code snippets.
Context:
Am trying to set up Conversions with basket data (CWBD) via Shopify customer events on the purchase tag. When we add the CWBD parameters to the code, the pixel stops working (conversions drop to 0).
Google CWBD example code uses gtag('event', 'purchase', { ...}); " rather than "gtag('event', 'conversion', { ...}); " and so ChatGPT is telling me I need to change the conversion from Conversion to Purchase both in the code and in Google Ads itself (see here for the Google info using purchase rather than conversion in the Google Ads example for CWBD)
However, I can't see anywhere where I can change the event in Google Ads so that it uses "gtag('event', 'purchase', { ...}); " in the event snippet. The event is already categorised as a "Purchase" goal in Google Ads and all of my events use "gtag('event', 'conversion', { ...}); " regardless of the event goal setting.
When I change the code to gtag('event', 'purchase', { ...}); " this doesn't fix the issue (it still records 0 conversions), so am unsure if I am missing something in terms of how to change conversion to purchase in Google Ads, or if the issue is actually something else entirely.
TIA!