Announcement

Collapse
No announcement yet.

Basket totals not correct

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

    Basket totals not correct

    Using the Suivant Ready Theme live demo ( my site show the same behavior) Add Moisture Seal Lipstick and select
    Color: Mauve which adds $5.10. Go to your cart everything add up. Go check out as gust and that is where the problem start on the next few screens that cart does not add up correctly.


    Thanks
    Mark

    #2
    Re: Basket totals not correct

    Hi Mark,

    This is something we will work on further and have part of a future release. In the mean time, you should be able to achieve the results you want by replacing this section of your basket code:
    Code:
    <div class="column one-fourth align-right nrp nlp">
        <mvt:if expr="l.settings:group:subtotal_base_price NE l.settings:group:subtotal">
            <s>&mvt:group:formatted_subtotal_base_price;</s><br />
        </mvt:if>
        &mvt:group:formatted_subtotal;
    </div>
    with this:
    Code:
    <div class="column one-fourth align-right nrp nlp">
        <mvt:if expr="l.settings:group:subtotal_base_price NE l.settings:group:subtotal">
            <s>&mvt:group:formatted_subtotal_base_price;</s><br />
            &mvt:group:formatted_subtotal;
        <mvt:else>
            &mvt:group:formatted_subtotal;
            <br /><small>&nbsp;</small>
        </mvt:if>
        <mvt:foreach iterator="option" array="group:options">
            <br />
            <mvt:if expr="l.settings:option:subtotal_base_price OR l.settings:option:subtotal">
                <mvt:if expr="l.settings:option:subtotal_base_price NE l.settings:option:subtotal">
                    <s>&mvt:option:formatted_subtotal_base_price;</s><br />
                </mvt:if>
                &mvt:option:formatted_subtotal;
            <mvt:else>
                &nbsp;
            </mvt:if>
        </mvt:foreach>
    </div>
    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
      Re: Basket totals not correct

      I could no find the old code you listed. It did give me a great start. I have the js drop down cart working. The only thing I have not got working is the Shipping option screen and Payment information screen.

      Thanks
      Mark

      Comment


        #4
        Re: Basket totals not correct

        Originally posted by Matt Zimmermann View Post
        Hi Mark,

        This is something we will work on further and have part of a future release. In the mean time, you should be able to achieve the results you want by replacing this section of your basket code:
        What would the update for the Iron and Wool Theme be? I tried what you posted and it didn't work.
        Sincerely,

        Stephen M. LaBar, Jr.
        (770) 441-9447
        The Martial Arts Store

        Please Visit Our Site At:
        http://www.themartialartsstore.com

        Comment


          #5
          Re: Basket totals not correct

          Hi Steven,

          Suivant and Iron & Wool share the same page code, so this change should work there as well.
          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


            #6
            Re: Basket totals not correct

            I created a ticket and this is the response I got:
            "I escalated your ticket and what I was told is this is how the software works by default. If you would like that additional charge to display on OCST OSEL and OPAY you will have to consider joining design club or purchasing a block of hours."

            When there is a bug (math not adding up is a bug) I have to pay to get it fixed? If you have this bug, how may customers are you loosing?

            Mark

            Comment


              #7
              Re: Basket totals not correct

              Mark,

              I agree with you that was a bug and want to thank Matt for posting the code fixing that bug.
              Sincerely,

              Stephen M. LaBar, Jr.
              (770) 441-9447
              The Martial Arts Store

              Please Visit Our Site At:
              http://www.themartialartsstore.com

              Comment

              Working...
              X