Следующий пересмотренный код добавляет правильный цикл элементов заказа и использует страницу «Заказ получен» (Спасибо) выделенный хук действия:
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
}
Должно работать (проверено) .
Связанный:
Дополнение - Конвертация живой валюты
1) Установите и активируйте этот бесплатный плагин: Конвертер валют FxRef евро
2) Включить автоматическое преобразование валюты из 'RON' в 'EUR' (пример цены товара).
заменить:
// 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 ); ?>',
Проверено и работает ... Это должно сработать.