I'm trying to change the layout of the Customer Order Confirmation email. I want to move this
to a different table on the page. I have triple checked to see if this snippet needs to be within any other iteration and I'm not seeing any. If this snippet remains directly after the
section the additional charges display as expected. When I move the snippet to another table that is separate from the one with one with the order:items nothing displays.
What am I missing?
Leslie
Code:
<mvt:foreach iterator="charge" array="order:charges"> <tr> <td align="right" valign="middle" colspan="3"> </td> <td align="right" valign="middle" nowrap><font size="2" face="Arial, Helvetica, sans-serif"><i>&mvt:charge:descrip;:</i></font></td> <td align="right" valign="middle" nowrap><font size="2" face="Arial, Helvetica, sans-serif">&mvt:charge:formatted_disp_amt;</font></td> </tr> </mvt:foreach>
Code:
<mvt:foreach iterator="item" array="order:items">
What am I missing?
Leslie
Comment