We are trying to get the payment methods to appear on our Merchant Email Confirmation. We have the below code:
The "Initialize List of Payment Transactions" is checked off.
I tried doing a test order using an account credit and the Payment Method isn't showing. I also tried sending an email using 'order emails' in admin
Code:
<mvt:foreach iterator="payment" array="order:payments"> <mvt:if expr="l.settings:payment:type EQ 6"> Refund: <mvt:else> Payment: </mvt:if> &mvte:payment:desc;:<br /> </mvt:foreach>
Code:
<mvt:foreach iterator="payment" array="order:payments"> <mvt:if expr="l.settings:payment:type EQ 6"> &mvt:payment:formatted_amount; <mvt:else> &mvt:payment:formatted_amount_negative; </mvt:if> <br /> </mvt:foreach>
I tried doing a test order using an account credit and the Payment Method isn't showing. I also tried sending an email using 'order emails' in admin
Comment