在Woocommerce 3中针对自定义订单接收页面进行Google分析集成

问题描述 投票:2回答:1

我在WooCommerce结账后有一个自定义的感谢页面,我需要将订单数据插入到Google电子商务跟踪代码中,以记录分析中的销售情况。其中一部分是为订单中的每个项目添加以下内容......

ga('ecommerce:addItem', {
  'id': <?php echo $order_id?>,    // Transaction ID. Required.
  'name': 'ACME Product',          // Product name. Required.
  'sku': '1234',                   // SKU/code.
  'category': 'Product Category',  // Category or variation.
  'price': '10.00',                // Unit price.
  'quantity': '1'                  // Quantity.
});

但是使用PHP插入订单商品的真实数据,而不是您在那里看到名称,sku,类别,价格和数量的占位符。

在谷歌搜索答案,我看到我现在必须使用 wc_display_item_meta ( $item );而不是被弃用的$item_meta = new WC_Order_Item_Meta( $item['item_meta'], $_product );

我需要帮助,因为我还没有完全了解PHP,我似乎无法找到任何接近的例子,我是如何开始获取值的?它是某种类型的foreach,还是有办法直接将订单项中的每个项目的各个属性解析为一个变量,然后我可以在这些占位符中插入?

javascript php woocommerce google-analytics orders
1个回答
2
投票

请尝试以下操作(您可能需要进行一些更改并添加关联ID):

?>
<script>
ga('require', 'ecommerce');
<?php

// GET the WC_Order object instance from, the Order ID
$order = wc_get_order( $order_id );

$order_key = $order->get_order_key();

$transaction_id = $order->get_transaction_id(); // Doesn't always exist

$transaction_id = $order_id; // (Or the order key or the transaction ID if it exist)

?>
ga('ecommerce:addTransaction', {
    'id':        '<?php echo $transaction_id; // To be checked ?>',
    'affiliation': '<?php echo 'UA-XXXXX-Y'; // replace by yours ?>',
    'revenue':   '<?php echo $order->get_total(); ?>',
    'shipping':      '<?php echo $order->get_shipping_total(); ?>',
    'tax':       '<?php echo $order->get_total_tax(); ?>',
    'currency':      '<?php echo get_woocommerce_currency(); // Optional ?>' 
}); <?php

// LOOP START: Iterate through order items
foreach( $order->get_items() as $item_id => $item ) :
    // Get an instance of the WC_Product object
    $product = $item->get_product();

    // Get the product categories for the product
    $categories = wp_get_post_terms( $item->get_product_id(), 'product_cat', array( 'fields' => 'names' ) );
    $category = reset($categories); // Keep only the first product category
?>
ga('ecommerce:addItem', {
    'id':     '<?php echo $transaction_id; ?>',
    'name':       '<?php echo $item->get_name(); ?>',
    'sku':    '<?php echo $product->get_sku(); ?>',
    'category': '<?php echo $category; ?>',
    'price':      '<?php echo wc_get_price_excluding_tax($product);  // OR wc_get_price_including_tax($product) ?>',
    'quantity': '<?php echo $item->get_quantity(); ?>',
    'currency': '<?php echo get_woocommerce_currency(); // Optional ?>' 
});
<?php
endforeach; // LOOP END
?>
ga('ecommerce:send');
</script>
<?php

此代码经过部分测试,不会产生错误......但需要对其进行真实测试。我希望它能奏效。

有关:

© www.soinside.com 2019 - 2024. All rights reserved.