For the complete documentation index, see llms.txt. This page is also available as Markdown.

Google Ads Dynamic Remarketing - Connector Migration

Google Ads Dynamic Remarketing (GADR) and Google Ads used to be separate connectors in JENTIS Tag Manager. We merged them into a single Google Ads connector to reduce setup complexity and keep all Google Ads functionality in one place. Use this guide to migrate your existing setup, as GADR tags are now deprecated.

Overview

This overview shows how the previous GADR tag templates map to the current Google Ads tag templates.

GADR Tag Template (deprecated)
Google Ads Tag Template

Google Ads Dynamic Remarketing - Purchase

Ecommerce Event (Client Side) (by default 1:1 mapped)

Google Ads Dynamic Remarketing - AddToCart Google Ads Dynamic Remarketing - Cart view Google Ads Dynamic Remarketing - View Item Google Ads Dynamic Remarketing - View Item List Google Ads Dynamic Remarketing - View Search Result

Ecommerce Event (Client Side) (needs event name and trigger adjustment)

Google Ads Dynamic Remarketing - Pageview

GTAG Configuration (Client Side)

Google Ads Dynamic Remarketing - Conversion

Conversion (Client Side)

Migration steps in detail

Pageview and conversion tags map directly to their new equivalents. Ecommerce events need one extra adjustment, because you must update the event name and trigger. Start with the Pageview and Conversion tags.

Google Ads defines both pageview and conversion tracking with a Google tag (gtag) snippet.

Pageview tag

For pageview tracking, Google provides a snippet like this:

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

    gtag('config', 'TAG_ID');
</script>

In JENTIS, this maps to the Google Ads tag template GTAG Configuration (Client Side).

Set the tag up with your account ID, usually in this format: AW-1223456790. When the tag fires, JENTIS initializes the Google tag library, dataLayer, and gtag object, then sends the matching config event.

Conversion Tag

The regular conversion snippet (for non Merchant Center Google Ads conversions) where no further products (item) data is to be tracked the snippet you receive from Google will look like this:

Use the Google Ads tag template "Conversion (client side)" to implement this equivalent on your website.

Ecommerce conversion - purchase

Legacy GADR tag templates did not let you customize the event value sent to gtag(). The Google Ads Dynamic Remarketing - Purchase tag therefore always sent the purchase event. In the current Google Ads connector, the Ecommerce Event tag still uses purchase as the default event name and trigger, but you can change both in the main tag settings.

Here is the equivalent Google Ads conversion snippet:

Please note that those examples lack the send_to parameter (as they are generic examples from the official Google Ads dynamic remarketing documentation). All JENTIS Tag Templates work configuration specific and will submit the send_to property with the conversion ID value to match your account. This is true for all client side Google Ads tag templates.

Use the Google Ads tag template "Ecommerce Event (Client Side)" to implement this code to your website.

Ecommerce Conversion - All Other

For all of the following other ecommerce events please follow the next steps:

  • view_search_results

  • view_item_list

  • view_item

  • add_to_cart

  • remove_from_cart

  • begin_checkout

  • view_cart

Here you must select the generic Google Ads tag template "Ecommerce Event". By default it holds the value purchase in the event field but you can simply replace it to any of the required values (ie. view_item).

Here is an according code snippet as it is required by Google to implement on your website:

In the JENTIS tag edit view adjust the value purchase to view_item:

Your setup is now ready. JENTIS sends the gtag() call with the view_item event and its matching properties based on your selected trigger.

Conclusion

In short, pageview and standard conversion tags map directly to their new Google Ads equivalents. Ecommerce remarketing tags now use the Ecommerce Event (Client Side) template, where you set the required event name and trigger for each use case. After this migration, your Google Ads setup stays easier to manage, because all client-side Google Ads tracking runs through one connector.

Last updated

Was this helpful?