Announcement

Collapse
No announcement yet.

Using COD Module but want it to display 'Invoice Me' on Merch & Cust notification

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

    Using COD Module but want it to display 'Invoice Me' on Merch & Cust notification

    I would like to know where does one tweak the reference to COD so that when a customer checks out it does not show COD or COD Charge but Invoice Me and Invoice Me Charge, that that also is displayed in the Customers and the Merchants email of the order. I know it has to be somewhere out there in the great abyss. If I need to have a module created let me know.
    Last edited by kampourisl; 03-16-20, 11:05 AM.

    #2
    If you are using the Emporium Plus module, I believe there is an input for what to display.
    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
      Have you updated the 'Display As' option under payment settings?

      Comment


        #4
        I'm using the COD Module that is in Miva, but if Emporium Plus has one that allows as references to change I'm sold! I did change the Display as in the module and that works as far as what the customer sees in Payment, but when you get to check out it displays...
        Shipping: EMS Express - EU:
        €40.90
        COD Charge:
        €10.00
        Total includes 24% VAT:
        €30.65
        Total:
        €158.35
        Payment: COD:
        (€158.35)

        Comment


          #5
          To change the display of the COD Charge, you would need to add a conditional to the charges loop and change the name if the charge is the COD Charge.
          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
            Where would I look for that?

            Comment


              #7
              Navigate to ReadyTheme -> Content Sections -> checkout_basket-summary, locate the <mvt:foreach iterator="charge" array="basket:charges"> section and update it with this:
              Code:
              <mvt:foreach iterator="charge" array="basket:charges">
                  <div class="row basket-charge-row">
                      <div class="column two-thirds basket-charge-descrip">
                          <mvt:if expr="l.settings:charge:descrip EQ 'COD Charge'">
                              Invoice Me Charge
                          <mvt:else>
                              &mvt:charge:descrip;
                          </mvt:if>
                      </div>
                      <div class="column one-third nlp basket-charge-amount">
                          &mvt:charge:formatted_disp_amt;
                      </div>
                  </div>
              </mvt:foreach>
              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


                #8
                Thank You, thank you!

                Comment

                Working...
                X