Wehenever I place an order using Woocommerce I get an URL with a few parameters. It looks like this -> /order-received/12240/?key=wc_order_5bf66c9ea4f0a
I would like to add a few of my own to this URL. But i cant find where this URL is generated.
What i tried:
to add add_query_arg( 'foo', 'bar' )
to the thank-you.php file. Didnt work.
Also tried :
add_action('woocommerce_checkout_order_processed','my_function');
function my_function() {
add_query_arg( 'foo', 'bar' );
}
You need to use the dedicated
woocommerce_get_return_url
filter hook. Somme payment gateways can also usewoocommerce_get_checkout_order_received_url
filter hook.Code goes in functions.php file of your active child theme (or active theme). tested and works.