Hoping to get some help with the Printable Invoice template.
I would like to change the Payment Method section. I just want the invoice to show the actual payment method (cc, paypal, etc.). I don't want to display all of the additional info like the card type, name on card, AVS code, Transaction ID, etc.
Here's the original code:
Please and thank you.
Matt
I would like to change the Payment Method section. I just want the invoice to show the actual payment method (cc, paypal, etc.). I don't want to display all of the additional info like the card type, name on card, AVS code, Transaction ID, etc.
Here's the original code:
Code:
<mvt:if expr="( ISNULL l.settings:order:payment:fields ) AND ( NOT ISNULL l.settings:order:payment:descrip )"> <table><tr><th>Payment Method:</th><td>&mvt:order:payment:descrip;</td></tr></table> <mvt:else> <mvt:foreach iterator="field" array="order:payment:fields"> <table><tr><th>&mvt:field:label;</th><td>&mvt:field:value;</td></tr></table> </mvt:foreach> </mvt:if>
Matt