Checkout Confirmation page

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
robgrigg
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Fri Jun 12, 2009 2:22 am

Checkout Confirmation page

Post by robgrigg » Fri Oct 09, 2009 12:17 am

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.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Checkout Confirmation page

Post by mazhar » Fri Oct 09, 2009 2:55 am

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.

robgrigg
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Fri Jun 12, 2009 2:22 am

Re: Checkout Confirmation page

Post by robgrigg » Fri Oct 09, 2009 8:05 am

Top banana; thanks.

Post Reply