Morning all,
Hopefully a simple question. When I user has completed a purchase, I'd like them to be directrd to a page which confirms the order and then showls links to tracking, my accout, etc, etc. What do I need to to to intercept the post to the mt account page and present my own?
Cheers.
Rob.
Checkout Confirmation page
Re: Checkout Confirmation page
Edit Website/Checkout/PaymentForms/{desired payment method form} code file and locate following line of code in it
You can update this statement to redirect to your own custom page and then put this statement some where on that page to redirect back to receipt page.
Code: Select all
Response.Redirect(NavigationHelper.GetReceiptUrl(checkoutResponse.OrderId));
Re: Checkout Confirmation page
Top banana; thanks.