Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Sign In and Checkout returns to cart not shipping options

  1. #1
    rubensp is offline Junior Member
    Join Date
    Jul 2009
    Posts
    3

    Default Sign In and Checkout returns to cart not shipping options

    Is there a way of changing which page the user is taken to after logging in. The scenario is the user isn't currently logged in and they are viewing the shopping cart page with an item in the cart. They click 'Checkout now' and enter their account details and click 'Sign In And Checkout' which takes them back to the cart where they have to click 'Checkout now' again.

    I want the user to go striaght to shipping options after they have logged in - how can I do this?

  2. #2
    SommerS is offline Junior Member
    Join Date
    Oct 2008
    Posts
    7

    Default

    If you could please submit a ticket here into support so that they can send you the fix.

  3. #3
    John Reasons is offline Senior Member
    Join Date
    Oct 2009
    Posts
    119

    Default

    This is not a bug, but something that was done by design. Just to make sure the customer was sure of the items when they signin. If you want to change this behavior, so customers move onto the shipping page, all you need to do is making the following change.

    For C# - checkoutanon.aspx.cs
    Change: string sReturnURL = "shoppingcart.aspx";
    To: string sReturnURL = "checkoutshipping.aspx";

    For VB.net - checkoutanon.aspx.vb
    Change: Dim sReturnURL As String = "shoppingcart.aspx"
    To: Dim sReturnURL As String = "checkoutshipping.aspx"

    Please keep in mind that doing so might have some negative effects if using on a site that skips the shipping page.

    You would need to find the next page in the checkout process and change it to that.