Reputation: 23
1) Which page do I add the referral tracking code in and where?
Hey this sound silly but how do I find the thank you page when I used WooCommerce? I search in the CPanel and got confused which file do I need to add the code.
Stated in the Referral Candy's page, that I need to find the page that customers go to right after they complete payment for their purchase, where exactly it is in WooCommerce WordPress?
2) One more, where do I go to make sure that my store provides with dynamic checkout variables?
Thanks.
Upvotes: 0
Views: 215
Reputation: 4243
This is one possible solution, place this code in your functions.php file, it will add the candy tracking code to your thank you page. You also have access to the order id with this hook if you need to track that with your referral code. Place your referral tracking code where I have written it below.
add_action( 'woocommerce_thankyou', 'add_candy_referral_script');
function add_candy_referral_script( $order_id ) {
?>
// Your referral tracking code here
<?php
}
Upvotes: 0