Установил код
{if isset($products_ga) and $page_name == 'order-opc' OR $page_name == 'module-cashondelivery-validation' OR $page_name == 'order-confirmation'}
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
'id': '{$customer_ga.id}', // Transaction ID. Required.
'affiliation': 'none', // Affiliation or store name.
'revenue': 'none', // Grand Total.
'shipping': 'none', // Shipping.
'tax': 'none', // Tax.
'currencyCode': 'UAN' // local currency code.
});
{foreach from=$products_ga item=item}
ga('ecommerce:addItem', {
'id': '{$item['id_product']}', // Transaction ID. Required.
'name': '{$item['name']}', // Product name. Required.
'sku': '{$item['reference']}', // SKU/code.
'category': '{$item['category']}', // Category or variation.
'price': '{$item['id_product']}', // Unit price.
'quantity': '{$item['price_wt']}' // Quantity.
});
{/foreach}
ga('ecommerce:send');
ga('set', 'currencyCode', 'UAN');
{/if}
до /head , код отрабавтывает скидывая заказы но на странице целей разный показатель не достает 20 заказов , в чем может быть проблема, либо так и должно быть?