Page 1 of 1

Checkout Confirmation page

Posted: Fri Oct 09, 2009 12:17 am
by robgrigg
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.

Re: Checkout Confirmation page

Posted: Fri Oct 09, 2009 2:55 am
by mazhar
Edit Website/Checkout/PaymentForms/{desired payment method form} code file and locate following line of code in it

Code: Select all

Response.Redirect(NavigationHelper.GetReceiptUrl(checkoutResponse.OrderId));
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.

Re: Checkout Confirmation page

Posted: Fri Oct 09, 2009 8:05 am
by robgrigg
Top banana; thanks.