• I am looking for the solution to track the orders from different youtube videos that are linked to the order page on my website.

    I need to understand which youtube video gives me new order.

    Now it looks like from youtube.com user go to the mywebsite.com/order-page

    Is there any chance to make custom url for each youtube video without creating multiple pages. I’d like to use something like:

    youtube video1 linked with mywebsite.com/order-page/1

    youtube video2 linked with mywebsite.com/order-page/2

    The same order page but add parameter.

    Therefore I can understand what exactly video generates me an order.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator bcworkz

    (@bcworkz)

    Such URLs are feasible while staying with one page. You can add custom rewrite rules that match against “order-page” and captures the subsequent number. The rewritten URL might then be something like index.php?pagename=order-page&yt=2

    With that rewritten URL, code for the page’s template can get the passed “yt” value from $_REQUEST['yt'] and display it on the page or do something else with it.

    kirkhensler

    (@kirkhensler)

    I also need a solution of this problem My site www.haleproductionstudios.com is currently on Wix, but I am planning to shift it to WordPress, so I will need a custom url to track my orders from customers. I take orders and have business dealings through my website, as my services are related to photography.

    • This reply was modified 8 months ago by kirkhensler.
    • This reply was modified 8 months ago by bcworkz.
    Moderator bcworkz

    (@bcworkz)

    @kirkhensler — FYI, we encourage you to start your own topic and refrain from tagging onto other people’s topics. We’re aware this is common practice in other forums, but it’s rare that two people’s issues are exactly the same regardless of how similar they may seem to be. Having others jump in with similar but different issues detracts from the attention the OP deserves.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make custom URL to track the orders’ is closed to new replies.