久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

在 Woocommerce 的訂單接收頁面上的 JS 跟蹤代碼中訂

Order items in a JS tracking code on Order received page in Woocommerce(在 Woocommerce 的訂單接收頁面上的 JS 跟蹤代碼中訂購商品)
本文介紹了在 Woocommerce 的訂單接收頁面上的 JS 跟蹤代碼中訂購商品的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

限時送ChatGPT賬號..

我正在嘗試在 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 跟蹤代碼中訂購商品的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Add programmatically a downloadable file to Woocommerce products(以編程方式將可下載文件添加到 Woocommerce 產品)
Get today#39;s total orders count for each product in Woocommerce(獲取今天 Woocommerce 中每種產品的總訂單數)
Add Custom registration fields in WooCommerce and phone field validation issue(在 WooCommerce 和電話字段驗證問題中添加自定義注冊字段)
Add a select field that will change price in Woocommerce simple products(在 Woocommerce 簡單產品中添加一個將更改價格的選擇字段)
Add custom columns to admin products list in WooCommerce 3(在 WooCommerce 3 中將自定義列添加到管理產品列表)
Customizing checkout quot;Place Orderquot; button output html(自定義結帳“下訂單按鈕輸出html)
主站蜘蛛池模板: 欧美一区二区三区在线观看 | 视频在线观看一区 | 91免费小视频 | 99爱免费| 久久久蜜桃一区二区人 | 美女131mm久久爽爽免费 | 人妖一区 | 中文字字幕在线中文乱码范文 | 婷婷在线视频 | 99精品欧美一区二区三区综合在线 | 久久男女视频 | aaaaaaa片毛片免费观看 | 国产精品中文字幕在线 | 精彩视频一区二区三区 | 亚洲视频在线一区 | 亚洲国产精品一区二区www | 亚洲视频二 | 亚洲免费网站 | 天天爱av | 在线观看亚洲欧美 | 色视频成人在线观看免 | www.887色视频免费 | 日韩一区和二区 | 欧美在线观看网站 | 日韩成人av在线播放 | 成人午夜精品一区二区三区 | 中文字幕精品一区久久久久 | 国产高清视频在线观看 | 欧洲一区在线观看 | 亚洲欧美国产毛片在线 | 午夜免费福利影院 | 欧美精品在线观看 | 九九热精品免费 | 日韩在线视频免费观看 | 欧美精品一区在线发布 | 欧美日韩精品亚洲 | 嫩草国产 | 一区二区在线 | 精品二区| a级片网站| 成人在线欧美 |