Announcement

Collapse
No announcement yet.

Checkout Issue ORDL / OCST

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Checkout Issue ORDL / OCST

    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?
    Attached Files

    #2
    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

    Comment


      #3
      I was able to uncheck the box on that dev site and it worked fine. However, on another dev site that we are working on for a client, the box is already unchecked but still going to the login screen. See attached.
      Attached Files

      Comment


        #4
        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


          #5
          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

          Working...
          X