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.
Announcement
Collapse
No announcement yet.
Using COD Module but want it to display 'Invoice Me' on Merch & Cust notification
Collapse
X
-
Using COD Module but want it to display 'Invoice Me' on Merch & Cust notification
Last edited by kampourisl; 03-16-20, 11:05 AM.Tags: None
-
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
-
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.90COD Charge:€10.00Total includes 24% VAT:€30.65Total:€158.35Payment: COD:(€158.35)
Comment
-
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
-
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
Comment