Google Ecommerce Tracking Opencart 3.0

Google Ecommerce Tracking is used to track the Ecommerce related information to your Google Analytics Account. Opencart by default comes with Google Analytics using which you can track: Audiences Acquistion Behaviour etc Basic Analytics Code ( Default with Opencart ): <!– Global Site Tag (gtag.js) – Google Analytics –> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(‘js’, new Date()); gtag(‘config’, ‘UA-XXXXXXXX-X’); </script> Ecommerce Tracking Code ( It is not default with Openart ): <!– Google Analytics Ecommerce Tracking Code –> <script type=”text/javascript”> var _gaq = _gaq || []; _gaq.push([‘_setAccount’, ‘<?php echo $ga_account_num;?’]); _gaq.push([‘_trackPageview’]); _gaq.push([‘_addTrans’, ‘<?php echo $grand_total;”?>’, // total – required ‘<?php echo empty($shipping_total) ? 0 : $shipping_total;?>’, // shipping ‘<?php echo $city;?>’, // city ‘<?php echo $zone;?>’, //...