Order items in a JS tracking code on Order received page in Woocommerce(在 Woocommerce 的订单接收页面上的 JS 跟踪代码中订购商品)
问题描述
我正在尝试在 Woocommerce 感谢页面中集成跟踪代码.我只找到了要填写的订单 ID.但我不知道如何为订单商品数据完成此操作.
I am trying to integrate a tracking code in Woocommerce Thankyou page. I found just the order id to fill it out. But I don't know how to complete this for order items data.
这是我的实际代码:
<script type="text/javascript">
ADMITAD = window.ADMITAD || {};
ADMITAD.Invoice = ADMITAD.Invoice || {};
ADMITAD.Invoice.broker = "adm"; // deduplication parameter (for Admitad by default)
ADMITAD.Invoice.category = "1"; // action code (defined during integration)
var orderedItem = []; // temporary array for product items
// repeat for every product item in the cart
orderedItem.push({
Product: {
productID: 'product_id', // internal product ID (not more than 100 characters, the same as in your product feed)
category: '1', // tariff code (defined during integration)
price: 'price', // product price
priceCurrency: "RON", // currency code in the ISO-4217 alfa-3 format
},
orderQuantity: '{{quantity}}', // product quantity
additionalType: "sale" // always sale
});
ADMITAD.Invoice.referencesOrder = ADMITAD.Invoice.referencesOrder || [];
// adding items to the order
ADMITAD.Invoice.referencesOrder.push({
orderNumber: "<?php echo $order->get_id(); ?>;", // internal order ID (not more than 100 characters)
orderedItem: orderedItem
});
// Important! If order data is loaded via AJAX, uncomment this string.
// ADMITAD.Tracking.processPositions();
</script>
感谢任何帮助.
推荐答案
以下重新访问的代码添加了正确的订单项循环并使用了Order received"页面(Thankyou)专用的动作钩子:>
The following revisited code adds the correct order items loop and uses "Order received" page (Thankyou) dedicated action hook:
add_action( 'woocommerce_thankyou', 'js_tracking_thank_you_page', 90, 1 );
function js_tracking_thank_you_page( $order_id ) {
// Get the WC_Order instance Object
$order = wc_get_order( $order_id );
// Output
?>
<script type="text/javascript">
ADMITAD = window.ADMITAD || {};
ADMITAD.Invoice = ADMITAD.Invoice || {};
// deduplication parameter (for Admitad by default)
ADMITAD.Invoice.broker = "adm";
// action code (defined during integration)
ADMITAD.Invoice.category = "1";
// temporary array for product items
var orderedItem = [];
<?php
// Loop through Order items
foreach( $order->get_items() as $item ) :
$product = $item->get_product();
?>
orderedItem.push({
Product: {
// internal product ID (not more than 100 characters, the same as in your product feed)
productID: '<?php echo $item->get_product_id(); ?>',
// tariff code (defined during integration)
category: '1',
// product price
price: '<?php echo $product->get_price(); ?>',
// currency code in the ISO-4217 alfa-3 format
priceCurrency: '<?php echo $order->get_currency(); ?>',
},
// product quantity
orderQuantity: '<?php echo $item->get_quantity(); ?>',
additionalType: "sale" // always sale
});
<?php endforeach; // End of Loop ?>
// adding items to the order
ADMITAD.Invoice.referencesOrder = ADMITAD.Invoice.referencesOrder || [];
ADMITAD.Invoice.referencesOrder.push({
// internal order ID (not more than 100 characters)
orderNumber: "<?php echo $order->get_id(); ?>;",
orderedItem: orderedItem
});
// Important! If order data is loaded via AJAX, uncomment this string.
// ADMITAD.Tracking.processPositions();
</script>
<?php
}
它应该可以(已测试).
相关:
- 如何获取 WooCommerce 订单详情
- 获取订单商品和 Woocommerce 3 中的 WC_Order_Item_Product
添加 - 实时货币换算
1) 安装并激活这个免费插件:Euro FxRef Currency Converter
1) Install and active this free plugin: Euro FxRef Currency Converter
2) 启用从RON"到EUR"的自动货币转换(产品价格示例).
2) Enable auto currency conversion from 'RON' to 'EUR' (product price example).
替换:
// product price
price: '<?php echo $product->get_price(); ?>',
通过以下:
// Converted product price (rounded with 2 decimals)
<?php $price = EuroFxRef::convert( $product->get_price(), 'RON', 'EUR' ); ?>
price: '<?php echo round( $price, 2 ); ?>',
经过测试并有效……这应该可以解决问题.
Tested and works… This should do the trick.
这篇关于在 Woocommerce 的订单接收页面上的 JS 跟踪代码中订购商品的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Woocommerce 的订单接收页面上的 JS 跟踪代码中订
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01