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}