<!-- Google tag (gtag.js) --><script async src="https://www.googletagmanager.com/gtag/js?id=AW-959580395"></script><script>window.dataLayer=window.dataLayer || [];function gtag(){dataLayer.push(arguments)}gtag('js',new Date());gtag('config','AW-959580395');</script>add_action('woocommerce_thankyou',function ($order_id){if (!$order_id) return;$order=wc_get_order($order_id);if (!$order || is_wp_error($order)) return;// Values for the conversion $value=(float) $order->get_total();$currency=$order->get_currency();$txn_id=$order->get_order_number();// Pretty order number // Output the Google Ads conversion event ONLY on the thank you page ?><!-- Google Ads Purchase Conversion --><script>gtag('event','conversion',{'send_to':'AW-959580395/CSCWCK3qjY0bEOuRyMkD','value':<?php echo json_encode($value);?>,'currency':'<?php echo esc_js($currency); ?>','transaction_id':'<?php echo esc_js($txn_id); ?>'});</script><?php},10,1);