32 lignes
1.4 KiB
Smarty
Fichiers exécutables
32 lignes
1.4 KiB
Smarty
Fichiers exécutables
[{$smarty.block.parent}]
|
|
|
|
[{assign var="gtmProducts" value=$oView->getArticleList()}]
|
|
|
|
[{if $gtmProducts|@count}]
|
|
[{strip}]
|
|
<script>
|
|
dataLayer.push({"event": null, "eventLabel": null, "ecommerce": null}); /* Clear the previous ecommerce object. */
|
|
dataLayer.push({
|
|
'event': 'view_search_result',
|
|
'eventLabel':'view_search_result',
|
|
'ecommerce': {
|
|
'search_term': '[{$searchparamforhtml}]',
|
|
'items': [
|
|
[{foreach from=$gtmProducts name="gtmProducts" item="gtmProduct"}]
|
|
[{assign var="gtmManufacturer" value=$gtmProduct->getManufacturer()}]
|
|
[{if !$gtmCategory}][{assign var="gtmCategory" value=$gtmProduct->getCategory()}][{/if}]
|
|
{
|
|
'item_id': '[{$gtmProduct->getFieldData("oxartnum")}]',
|
|
'item_name': '[{$gtmProduct->getFieldData("oxtitle")}]',
|
|
'price': [{$gtmProduct->oxarticles__oxprice->value|default:'0'}],
|
|
'item_brand': '[{if $gtmManufacturer}][{$gtmManufacturer->oxmanufacturers__oxtitle->value}][{/if}]',
|
|
'item_category': '[{if $gtmCategory}][{$gtmCategory->getLink()|parse_url:5|ltrim:"/"|rtrim:"/"}][{else}]-[{/if}]',
|
|
'quantity': 1
|
|
}[{if !$smarty.foreach.gtmProducts.last}],[{/if}]
|
|
[{/foreach}]
|
|
]
|
|
}
|
|
});
|
|
</script>
|
|
[{/strip}]
|
|
[{/if}] |