我想在“订单确认页面”中为我的网站的营销像素获得一个很好的数据层跟踪(感谢您购买页面)。 该网站使用OXID Shop作为电子商务平台。
我想进行以下设置:
IF currentPage == 'thankyou':
products_info = '[{id: 'product_id_1', price: 'price_1', quantity: 'quantity_1'},
{id: 'product_id_2', price: 'price_2', quantity: 'quantity_2'}]'
如果我的页面变量“CurrentController”='thankyou',我正在尝试以下代码直接从后端获取值,我可以轻松地为仅包含一篇文章的值的变量执行此操作。
示例:
[{if $currentControllerName == "thankyou"}]
var dataLayer = [];
[{assign var="order" value=$oView->getOrder()}]
dataLayer.push(
{email: [{$order->oxorder__oxbillemail->value}]}
);
[{/if}]
问题在于我需要获取多篇文章的值,就像我在开头为products_info变量提到的那样。
我正在尝试以下代码,但我不确定如何使迭代器“追加”或将每个产品值发送到一个变量:
[{if $currentControllerName == "thankyou"}]
var dataLayer = [];
[{assign var="order" value=$oView->getOrder()}]
(
[{foreach from=$orderArticles item="currOrderArticle"}]
[{assign var="currArticle" value=$currOrderArticle->getArticle()}]
[{assign var="currBasePrice" value=$currOrderArticle->getBasePrice()}]
product_info: [{id: [{$currOrderArticle->oxorderarticles__oxartnum->value}],
price: [{$currBasePrice->getBruttoPrice()}],
quantity: [{$currOrderArticle->oxorderarticles__oxamount->value}]}]
[{/foreach}]
)
[{/if}]
答案 0 :(得分:1)
您调用的Javascript函数.push()会在每次调用时将项附加到dataLayer数组。 (见docs)
那么为什么不让smarty为篮子里的每件产品调用该函数。
[{if $oView->getClassName() == "thankyou"}]
<script>
var dataLayer = [];
[{assign var="basket" value=$oView->getBasket()}]
[{foreach from=$basket->getContents() item=basketitem}]
[{assign var=itemarticle value=$basketitem->getArticle()}]
[{assign var="basketitemprice" value=$basketitem->getPrice()}]
dataLayer.push({ id: [{$itemarticle->oxarticles__oxartnum->value}], price: [{$basketitemprice->getBruttoPrice()}], quantity: [{$basketitem->getAmount()}] });
[{/foreach}]
</script>
[{/if}]
这会将您的产品添加到您的Javascript dataLayer
数组。
值得注意的是,以下内容也应该有效:(可能break在不受支持的IE版本中)
[{if $oView->getClassName() == "thankyou"}]
<script>
var dataLayer = [
[{assign var="basket" value=$oView->getBasket()}]
[{foreach from=$basket->getContents() item=basketitem}]
[{assign var=itemarticle value=$basketitem->getArticle()}]
[{assign var="basketitemprice" value=$basketitem->getPrice()}]
{ id: [{$itemarticle->oxarticles__oxartnum->value}], price: [{$basketitemprice->getBruttoPrice()}], quantity: [{$basketitem->getAmount()}] },
[{/foreach}]
];
</script>
[{/if}]
最后,您要做的是创建一个Javascript数组(可由Google跟踪代码管理器读取)。这是Thankyou页面上的最终输出(以及完全有效的Javascript):
<script>
var dataLayer = [];
dataLayer.push({ id: 3788, price: 24.95, quantity: 1 });
dataLayer.push({ id: 1401, price: 129, quantity: 1 });
dataLayer.push({ id: 10101, price: 0, quantity: 1 });
</script>
请注意,您没有使用PHP将数据附加到dataLayer变量。您正在创建Javascript代码(使用Smarty / PHP),然后创建dataLayer数组(然后可以由Google Tag Managers Javascript使用)