Not showing the correct checkout flow

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
mouse_8b
Commander (CMDR)
Commander (CMDR)
Posts: 115
Joined: Mon Oct 11, 2010 1:21 pm
Location: Austin, TX
Contact:

Not showing the correct checkout flow

Post by mouse_8b » Fri Jan 07, 2011 11:51 am

(Using 7.0.2) My store has been using the default one page checkout and it works just fine. Yesterday, I copied the OnePageCheckout conlib control to my Conlib/Custom folder and added a little text just to indicate which fields were required to sign up. After I changed the scriptlet to use the custom control I could no longer use One Page Checkout; it would go to the multi-page checkout. The only things I changed were adding the custom OnePageCheckout control and making the "Checkout Page" content scriptlet use that custom control. Why is it not using my custom page and reverting to the multi-page checkout?

mouse_8b
Commander (CMDR)
Commander (CMDR)
Posts: 115
Joined: Mon Oct 11, 2010 1:21 pm
Location: Austin, TX
Contact:

Re: Not showing the correct checkout flow

Post by mouse_8b » Fri Apr 08, 2011 10:12 am

I figured it out, thanks to some other forum posts. In the Basket ConLIb control, find

Code: Select all

Response.Redirect(NavigationHelper.GetCheckoutUrl());
and change it to

Code: Select all

Response.Redirect(NavigationHelper.GetCheckoutUrl(false));
The post that helped:
viewtopic.php?f=42&t=12911&p=57346&hili ... url#p57346

Post Reply