How can we have the customer forwarded to the shipping options page after they sign in during the checkout process? Right now when they sign in they take a step back to the shopping cart and have to go forward again to proceed
thanks
How can we have the customer forwarded to the shipping options page after they sign in during the checkout process? Right now when they sign in they take a step back to the shopping cart and have to go forward again to proceed
thanks
That's handled by a ReturnURL. Open CheckoutAnon.aspx.cs file, go to btnSignInAndCheckout_Click() method, and do the change below:
Code:From: string sReturnURL = "shoppingcart.aspx"; ...change it to: string sReturnURL = "checkoutshipping.aspx";
That worked perfectly, thank you.
Another question about the checkout. We have an option to checkout without creating an account. It differs from the checkout while creating an account page by not having the password input fields. However, I noticed when you do the no account option everything go ok, you hit proceed and it reloads the same page createaccount.aspx but this time forces you to create a password. This does not make much sense. I imagine we have done something wrong with the implementation of the no account checkout.
I can provide more info, but any insight would be helpful
thank you