I'm looking to do something quite simple which I can't get figured out. I want to append (add) the order number to a URL when a customer reaches the Thank You page after paying in WooCommerce.
It needs to look a bit like: https://example.com/schedule?ordernumber=123456
This way I can build a scheduling page that takes the ordernumber and pre-fills it into the form where a customer would plan a meeting for the product without them having to remember the order number.
I tried simple things as echo 'Schedule your appointment: <a href="https://example.com/schedule?ordernumer=' . $order->get_order_number(); . '" /a>'
But that did not work out. I've been trying for a while now, so I hope someone can help me out,
Thanks a lot and stay safe!