On my dev store when I add an item to the basket and go to checkout, I am brought to the ORDL page with the option to select login or guest checkout. (See screenshot) However, on the Colossus demo when you go to checkout you go straight to the OCST page with a link at the top to login. Any ideas why the dev site would be different and how it can be fixed to work like the demo?
Announcement
Collapse
No announcement yet.
Checkout Issue ORDL / OCST
Collapse
X
-
You can control this in the administration portal. Go to User Interface -> Global Settings -> Settings -> Shopping Interface Settings and uncheck "Display Customer Login Before Checkout".Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
-
It looks like at some point the checkout button code was changed to a conditional:
Code:<mvt:if expr="g.Basket:cust_id"> <a class="c-button c-button--full c-button--huge u-bg-primary u-color-black u-text-bold u-text-uppercase" href="&mvte:urls:OINF:auto;">Secure Checkout</a> <mvt:else> <a class="c-button c-button--full c-button--huge u-bg-primary u-color-black u-text-bold u-text-uppercase" href="&mvte:urls:ORDL:auto;">Secure Checkout</a> </mvt:if>
Comment
-
Since Colossus was initially thought of as a subscription based ReadyTheme, that conditional was added. You can change it to this and it should work as expected.
Code:<a class="c-button c-button--full c-button--huge u-bg-primary u-color-black u-text-bold u-text-uppercase" href="&mvte:urls:OINF:auto;">Secure Checkout</a>
Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
Comment
Comment