• I have a website with two separate thank you pages that I’m currently trying to track with Bing Ads.

    I’ve already created my goals for Bing where I have a two separate landing pages that have a form. Upon completion of the form the user is routed to the appropriate thank you page where a conversion should be tracked.

    According to Bing it states to implement the tracking code for the landing page and the conversion code on the thank you page. On WordPress I know that you implement the code on the footer.php.

    Don’t I have to specify the url for the landing page and url for the thank you page and if so where exactly do I do that?

    I apologize for the noob question, but I appreciate any and all help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’d love to know this as well. Been looking for a solution for ages. Any luck?

    Thread Starter ffbojorq

    (@ffbojorq)

    Yeah, I finally figured it out.

    You have to place an IF statement into the code to get it to function properly.

    You need something like this:

    <?php wp_footer(); ?>
    <?php if (is_page(Place the confirmation page ID # here)) { ?>

    Then place your Google or Bing tracking code here.

    <?php } elseif (is_page(Other confirmation page ID #)) { ?>

    Google or Bing tracking code for other confirmation page.

    <?php } ?>
    </body></html>

    Sorry about the late response, but I hope this helps.

    Thanks a lot for the help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bing Conversion Tracking’ is closed to new replies.