如何获取 Google 广告的动态转化价值?
how to capture dynamic conversion values on Google ads?
我正在尝试通过 goole-tag-manager chrome 将我的感谢页面(成功订购后看到用户的页面)上的订单总价动态添加到 google 广告报告中] 扩展。
我在感谢页面上使用的 google 广告片段是这样的:
*之前有关注google支持(https://support.google.com/google-ads/answer/6095947?hl=en)
<!-- Event snippet for Purchase conversion page -->
<script>
gtag('event', 'conversion', {
'send_to': 'My Conversion ID/My Conversion Label',
'value': 11.50,
'currency': 'EUR',
'transaction_id': ''
});
</script>
订单总金额为“'value': 11.50,”
所以我放置以下代码而不是 11.50
document.querySelector("#cost>.woocommerce-Price-amount.amount").innerText.match(/^.{1}(.*).{0}/i)[1].trim();
所以我每次都可以通过扫描 dom 动态地获取每个订单的总数,但不起作用。我的想法对吗?这是在不使用 google 标签管理器的情况下通过在我的网站上手动添加代码来完成此操作的正确方法吗?关于如何做的任何想法?
嗯,当你使用 php 时,它实际上非常简单。
// Hook the function in head.
add_action('wp_head', 'bks_head_social_tracking_code');
function bks_head_social_tracking_code() {
// Check if its thank you page.
if(is_wc_endpoint_url( 'order-received' )) {
// Get order object.
$order = wc_get_order(get_query_var('order-received'));
// Get total.
$order_total = $order->get_total();
// Prepare.
$output = "
<script>
gtag('event', 'conversion', {
'send_to': 'My Conversion ID/My Conversion Label',
'value': ". $order_total .", // Use dynamically.
'currency': 'EUR',
'transaction_id': ''
});
</script>";
// echo.
echo $output;
}
}
You can make the currency dynamic too. You can use this to to get different kinds of data. https://www.businessbloomer.com/woocommerce-easily-get-order-info-total-items-etc-from-order-object/
我正在尝试通过 goole-tag-manager chrome 将我的感谢页面(成功订购后看到用户的页面)上的订单总价动态添加到 google 广告报告中] 扩展。
我在感谢页面上使用的 google 广告片段是这样的:
*之前有关注google支持(https://support.google.com/google-ads/answer/6095947?hl=en)
<!-- Event snippet for Purchase conversion page -->
<script>
gtag('event', 'conversion', {
'send_to': 'My Conversion ID/My Conversion Label',
'value': 11.50,
'currency': 'EUR',
'transaction_id': ''
});
</script>
订单总金额为“'value': 11.50,” 所以我放置以下代码而不是 11.50
document.querySelector("#cost>.woocommerce-Price-amount.amount").innerText.match(/^.{1}(.*).{0}/i)[1].trim();
所以我每次都可以通过扫描 dom 动态地获取每个订单的总数,但不起作用。我的想法对吗?这是在不使用 google 标签管理器的情况下通过在我的网站上手动添加代码来完成此操作的正确方法吗?关于如何做的任何想法?
嗯,当你使用 php 时,它实际上非常简单。
// Hook the function in head.
add_action('wp_head', 'bks_head_social_tracking_code');
function bks_head_social_tracking_code() {
// Check if its thank you page.
if(is_wc_endpoint_url( 'order-received' )) {
// Get order object.
$order = wc_get_order(get_query_var('order-received'));
// Get total.
$order_total = $order->get_total();
// Prepare.
$output = "
<script>
gtag('event', 'conversion', {
'send_to': 'My Conversion ID/My Conversion Label',
'value': ". $order_total .", // Use dynamically.
'currency': 'EUR',
'transaction_id': ''
});
</script>";
// echo.
echo $output;
}
}
You can make the currency dynamic too. You can use this to to get different kinds of data. https://www.businessbloomer.com/woocommerce-easily-get-order-info-total-items-etc-from-order-object/