Jump to content

Recommended Posts

Bonjour, 

J'ai voulu activer le suivi du e-commerce amélioré sur GA et je n'ai pas les performances des produits. Tout est en "Not Set"

Après quelques échanges, on m'a fait ajouter la balise ci-dessous dans le fichier order-confirmation-table.tpl ce qui me permet de remonter au moins le CA et les transactions. 

Par contre, si toute la première partie du code fonctionne correctement, tout ce qui vient après le "items = [{foreach from=" ne fonctionne pas. 

Comment avez-vous configuré cet élément sur votre boutique ? 

 

 

    <script type="text/javascript">
var transaction_id;

var g_totalvalue;
var g_currency;
var g_tax;

var g_shipping;
var items;

   transaction_id = '{$order.details.reference}';
   g_totalvalue = {$order.totals.total['amount']};
   g_currency = "{$currency.iso_code}";
   g_shipping = {$order.subtotals.shipping['amount']};
   item_id:'{$product.id_product}'
   
   {if {$order.subtotals.tax['amount']} != ''} g_tax = {$order.subtotals.tax['amount']}; {else} g_tax = 0{/if};
   items = [{foreach from=$order.products item=product}{literal}{{/literal}item_id:'{$product.id_product}', item_name:'{$product.product_name}', quantity:'{$product.product_quantity}', price:'{$product.product_price}'{literal}},{/literal}{if $smarty.foreach.prodid.last}{else}{/if}{/foreach}];
 </script>
 

 

Merci par avance, 

 

Anhtony

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...