0

WooCommerceオーダーから 'value'と 'order_quantity'を動的にトラッキングするためにPinterestコンバージョンタグをインストールする必要があります。 PinterestタグにはJavaScriptが2つあります。パート1は、サイトのヘッダーにある基本コードです。パート2は、チェックアウトのヘッダーに入るイベントコードです。WooCommerceオーダーのためのPinterestコンバージョントラッキングタグ

私はパート2(値とorder_quantityがWooCommerceの受注から引くように変更する必要がある)の下に修正されなければならない何だと思います。ここ

<script> 
pintrk('track', ' checkout ', { 
    value: {{Enhanced Transaction Revenue}}, 
    order_quantity: {{item.quantity}} 
    }); 
</script> 
<noscript> 
<img height="1" width="1" style="display:none;" alt="" src=" https://ct.pinterest.com/v3/?tid= 123456789 &event= checkout &noscript=1" /> </noscript> 

Pinterestの変換タグガイド:https://help.pinterest.com/sites/help/files/pinterest_tag_instructions.pdf

私はこの時点で絶望的なので、どんな助けも大いに評価されます...そして報いました!

答えて

0

これをあなたのfunctions.phpに入れ、Your_Tag_IDをPinterestのタグIDと一致するように変更します。

https://docs.woocommerce.com/document/custom-tracking-code-for-the-thanks-page/

https://developers.pinterest.com/docs/ad-tools/conversion-tag/

:ここ

add_action('woocommerce_thankyou', 'pinterest_tracking'); 

function pinterest_tracking($order_id) { 

// Lets grab the order 
$order = wc_get_order($order_id); 

/** 
* Put your tracking code here 
* You can get the order total etc e.g. $order->get_total(); 
*/ 

// This is the order total 
$order_total = $order->get_total(); 
$order_quantity = $order->get_item_count(); 

?> 

<script> 
    pintrk('track', 'checkout', { 
     { 
      value: '<?php echo $order_total ?>', 
      order_quantity: '<?php echo $order_quantity ?>', 
      currency: 'USD' 
     } 
    ]); 
</script> 
<noscript> 
<img height="1" width="1" style="display:none;" alt="" src="https://ct.pinterest.com/v3/?tid=Your_Tag_ID&event=checkout&ed[value]=<?php echo $order_total ?>&ed[order_quantity]=<?php echo $order_quantity ?>&noscript=1"/> 
</noscript> 
<?php 

} 

が助けてくれた2つのリンクがあります

関連する問題