View Single Post
  #4  
Old 08-17-2023, 11:59 AM
 
jw@leathergroups.com jw@leathergroups.com is offline
 

Newbie
  
Join Date: Apr 2013
Posts: 2
 

Default Re: add_to_cart event GA4

Quote:
Originally Posted by keystone
Has anyone successfully added an add_to_cart event for GA4 in xcart v.4.7.# using gtag?
I have the purchase event set up and working fine. Here is my current code...
Code:
{if $main eq "order_message" and $orders} <!-- Google Analytics 4--> <script> gtag('event', 'purchase'); {foreach $orders as $order} gtag( 'event', 'purchase', {csi_get_gtag_ecommerce_data event="purchase" order=$order.order products=$order.products} ); {/foreach} </script> <!-- End Google Analytics 4 --> {/if}

Which file was this used in for the purchase event?
Reply With Quote