在trackingpixel中实现动态变量

时间:2015-05-18 12:21:28

标签: php variables

我必须在关联计划的跟踪像素中实现动态变量。我们之前使用过这个像素,但现在我们需要将货币定义为动态变量,因为我们有一个多币种网店(欧元,英镑)。

跟踪像素如下:

<?php
$lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
$order = Mage::getSingleton('sales/order');
$order->load($lastOrderId);
$total = $order->getData('grand_total');
?>

<img src="http://domain.com/?&productID=&conversionType=sale&transactionID=<?php echo $this->getOrderId()?>&transactionAmount=<?= $total ?&currency=VARIABEL" alt="" width="1" height="1" border="0" />

但现在我需要实现将货币代码提取到像素中的代码段。

我知道co片段看起来像这样:

$currencyCode = $order->getOrderCurrencyCode();

有人可以帮助我将其实现到像素中吗?

0 个答案:

没有答案