Implement Dynamic Remarketing Tag in Volusion using Google Tag Manager

Standard

Recently I have worked for one of my client who want to Implement volution dynamic remarketing Tag

Dynamic Remarketing means who has visited your website and re-engaged with users who has already visited with Custom Parameters of Dynamic Remarketing. To help you convert more visitor with Volusion Dynamic Remarketing using Google Tag Manager. Less CPC with maximize ROI of your Store with Volusion Dynamic Remarketing Tag 

Setting up Volution Dynamic Remarketing Tag via Google Tag Manager

Step 1. First Need to be installed Google Tag Manager on Volusion Store for Dynamic Remarketing

Copy the code below and paste it onto every page of your website. Place it immediately after the opening <body> tag.

<!– Google Tag Manager –>
<noscript><iframe src=”//www.googletagmanager.com/ns.html?id=GTM-XXXXXX
height=”0″ width=”0″ style=”display:none;visibility:hidden”></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({‘gtm.start’:
new Date().getTime(),event:’gtm.js’});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!=’dataLayer’?’&l=’+l:”;j.async=true;j.src=
‘//www.googletagmanager.com/gtm.js?id=’+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,’script’,’dataLayer’,’GTM-XXXXXX‘);</script>
<!– End Google Tag Manager –>

Step 2. For Install Google Tag Manager in your Volution Store your admin area, got t to Design > File Editor in your Admin Area —->In the Live Edit page, click on your template.htm

add Google Dynamic Remarketing Code in Volusion

Volusion Dynamic Remarketing Using Google Tag Manager

Step 3. Below Customization Code need to place on Volusion for Dynamic Remarketing Tag 

Volusion Dynamic RemarketingIf home page 

<!--If home page-->
if(pathname == "/" || pathname == "Default.asp" || pathname == "default.asp"){
var pagetype = 'home';
var googleprice = '';
var googleprodid ='';
};

If Product Page

if(pathname.indexOf('-p/') > -1){
var pagetype = 'product';
var googleprice = $('span[itemprop="price"]').html().split('<')[0].replace('£','').replace(',','').trim();
var googleprodid = global_Current_ProductCode;
};

Step 4. Need to be Setup Remarketing Campaign in AdWords

Volution AdWords dynamic remarketing Using Google Tag Manager

Volution AdWords dynamic remarketing Using Google Tag Manager

Step 5. Configure Tags, Variable and Rule for Setup Volusion Dynamic Re-marketing Tag Campaign in Google Tag Manager

  1. You need create a variable to Data Layer Variable called google_tag_params to Choose this option to supply custom parameters in a data layer variable.
Volusion Dynamic Remarketing Setup

Add Google Dynamic Remarketing Code in Volusion Store

Google Dynamic Re-marketing Setup Using Google Tag Manager Article – https://support.google.com/tagmanager/answer/6106009?hl=en&rd=1

For Developer Guide For Remarketing Setup – https://developers.google.com/adwords-remarketing-tag/parameters

For Troubleshoot of Dynamic Re marketing using Google Tag Manager –  Use Tag Assistance  – https://chrome.google.com/webstore/detail/tag-assistant-by-google/kejbdjndbnbjgmefkgdddjlbokphdefk?hl=en

For Contact: mappchero@gmail.com

Warning:if you do n’t know about javascript or do n’t have developing knowledge then do n’t try to implement on Volusion Dynamic Re-marketing Setup using Google Tag Manager  that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

Implement Google Ads Dynamic Remarketing for Shopify

Standard

Tag your website for Google Ads dynamic remarketing to Shopify

To exhibit dynamic advertisements to persons who have visited your web page, add the dynamic remarketing tag with customized parameters to your website. The dynamic remarketing tag collects knowledge, such because the IDs of the products or services that folks viewed for your site, the types of pages considered to corresponding to looking cart pages, and the complete value of items.

To implement Google Ads Dynamic Remarketing for Shopify, you can follow these steps:

  1. Create a Google Ads account and link it to your Shopify store.

2. Set up Google Ads Conversion Tracking on your Shopify store to track the conversion events that you want to use for remarketing.

3. Create a Google Ads Remarketing tag and install it on your Shopify store.

4. Set up a Google Ads Remarketing campaign in Google Ads, selecting the Dynamic Remarketing campaign type and the appropriate product or service category.

5. Customize your Dynamic Remarketing campaign by creating product feeds that include your product information, such as images, descriptions, and prices.

6. Set up your Dynamic Remarketing ad templates, which will automatically pull the product information from your product feeds and generate ads for each product.

7. Launch your Dynamic Remarketing campaign and monitor its performance to optimize your ad targeting and bidding strategy.

More factors to use dynamic remarketing Tags for Shopify Dynamic Remarketing Campaign

To implement Google Ads Dynamic Remarketing for Shopify, you can use the following events to track user actions on your website:

view_item: This event should be triggered when a user views a specific product page. You can use this event to track which products a user has shown interest in and use this data to create highly targeted remarketing campaigns for those products. view_item_list: This event should be triggered when

view_item_list: This event should be triggered when a user views a list of products, such as a collection page or search results page. You can use this event to track which products a user has shown interest in.

view_search_results: This event should be triggered when a user performs a search on your website and views the search results page. You can use this event to track which search queries a user has performed and which products they have shown interest in.

add_to_cart: This event should be triggered when a user adds a product to their cart. You can use this event to track which products a user is interested in purchasing.

purchase: This event should be triggered when a user completes a purchase. You can use this event to track which products were purchased and how much revenue was generated.

By tracking these events, you can use the data to create highly-targeted remarketing campaigns that show users the products they have shown interest in or abandoned in their cart. To implement these events, you can use Google Tag Manager to set up event tracking and trigger the appropriate events based on user actions. Once the events are tracked, you can use them to create custom audiences and dynamic remarketing campaigns in Google Ads.

Implementation Google Ads Dynamic Remarketing for Shopify using Google Tag Manager

  • High performance layouts: AdWords calls which advertising layout that is dynamic is likely to perform best for the individual, arrangement, and stage where the advertisement will show. 

Custom Dynamic Tag with custom parameters for Shopify Dynamic Remarketing 

<script type=”text/javascript”>
var google_tag_params = {
ecomm_prodid: “REPLACE_WITH_STRING_VALUE“,
ecomm_pagetype: “REPLACE_WITH_STRING_VALUE“,
ecomm_totalvalue: REPLACE_WITH_STRING_VALUE
};
</script>

Dynamic Remarketing Tags Implement  in Shopify

  1.   Following the below instruction to set up dynamic Remarketing tags for Shopify

Login with Admin —–> Go to Online Store —–> Themes. (Place it immediately before the closing <body> tag.)

<script type=”text/javascript”>
{% if template contains ‘product’ %}
var google_tag_params = {
ecomm_prodid: ‘{{ product.id }}’,
ecomm_pagetype: ‘product’,
ecomm_totalvalue: {{ product.price | money_without_currency | replace: ‘,’, ” }}
};
{% elsif template contains ‘cart’ %}
var google_tag_params = {
{% if cart.item_count > 1 %}
ecomm_prodid: [{% for item in cart.items %}'{{ item.product_id }}_{{ item.variant.id }}'{% if forloop.last != true %},{% endif %}{% endfor %}],
{% elsif cart.item_count == 1 %}
ecomm_prodid: {% for item in cart.items %}'{{ item.product_id }}_{{ item.variant.id }}'{% endfor %},
{% else %}
ecomm_prodid: ”,
{% endif %}
ecomm_pagetype: ‘cart’,
ecomm_totalvalue: {{ cart.total_price | money_without_currency | replace: ‘,’, ” }}
};
{% elsif template contains ‘search’ %}
var google_tag_params = {
ecomm_prodid: ”,
ecomm_pagetype: ‘searchresults’,
ecomm_totalvalue: ”
};
{% elsif template contains ‘index’ %}
var google_tag_params = {
ecomm_pagetype: ‘home’,

};
{% else %}
var google_tag_params = {
ecomm_prodid: ”,
ecomm_pagetype: ‘other’,
ecomm_totalvalue: ”
};
{% endif %}
</script>
<script type=”text/javascript”>
/* <![CDATA[ */
var google_conversion_id = xxxxxx;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type=”text/javascript” src=”//www.googleadservices.com/pagead/conversion.js”>
</script>
<noscript>
<div style=”display:inline;”>
<img height=”1″ width=”1″ style=”border-style:none;” alt=”” src=”//googleads.g.doubleclick.net/pagead/viewthroughconversion/xxxxxxx/?value=0&amp;guid=ON&amp;script=0″/>
</div>
</noscript>

Note: Make you will replace with your google_conversion_id

2. Shopify Dynamic Remarketing Tags for Order Confirmation Page

 <script type=”text/javascript”>
var google_tag_params = {
ecomm_prodid: [{% for line_item in order.line_items %}'{{ line_item.id }}'{% unless forloop.last %},{% endunless %}{% endfor %}],
ecomm_pagetype: ‘purchase’,
ecomm_totalvalue: {{order.total_price  | money_without_currency }},
};
</script>

<script type=”text/javascript”>
/* <![CDATA[ */
var google_conversion_id = xxxxxxxx;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type=”text/javascript” src=”//www.googleadservices.com/pagead/conversion.js”>
</script>
<noscript>
<div style=”display:inline;”>
<img height=”1″ width=”1″ style=”border-style:none;” alt=”” src=”//googleads.g.doubleclick.net/pagead/viewthroughconversion/948315090/?value=0&amp;guid=ON&amp;script=0″/>
</div>
</noscript>

Set Up Google Ads Dynamic Remarketing in Shopify

Dynamic Remarketing Setup for Google Ads in Shopify

Note: Make you will replace with your google_conversion_id

Dynamic Remarketing for Shopify– https://support.google.com/tagmanager/answer/6107169?hl=en

For Troubleshoot of Dynamic Remarketing –  Use Tag Assistance  – https://chrome.google.com/webstore/detail/tag-assistant-by-google/kejbdjndbnbjgmefkgdddjlbokphdefk?hl=en

For Contact: mappchero@gmail.com

Warning:if you do n’t know about javascript or do n’t have developing knowledge then do n’t try to implement on Dynamic Remarketing that can broke your site, Cart and other functionality 

Disclaimer: Google tag manager belongs to Google property 

I am avaible for Hire on Freelancer: Freelancer.com

I am avaible for Hire on Upwork: Upwork.com

I am avaible for Hire on Peopleperhour: Peopleperhour.com

I am avaible for Hire on Guru: Guru.com