Hi Nicolas,
I have now disabled the email creation notification, and modifying the content sent in the order status notification.
I am trying to display new fields which i've created and populated from the database table, products.
Need to display the content from these fields, in the Order Status Notification email. Below is the code I'm trying to add to the email - the first row with headings is appearing, but the second row, with references to the fields, is displaying blank cells.
---start code snippet
<table width="100%" style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size:12px; cellspacing: 0px; cellpadding:0px;">
<tr>
<td><h1 style="background-color:#FFFFFF;color:#CC3232;font-size:12px;width:100%;padding:0px;">Scoop Includes</h1></td>
<td><h1 style="background-color:#FFFFFF;color:#CC3232;font-size:12px;width:100%;padding:0px;">Scoop Conditions</h1></td>
<td><h1 style="background-color:#FFFFFF;color:#CC3232;font-size:12px;width:100%;padding:0px;">Opening Hours</h1></td>
</tr>
<tr>
<td><?php echo $item->scoop_includes; ?></td>
<td><?php echo $item->scoop_conditions; ?></td>
<td><?php echo $item->opening_hours; ?></td>
</tr>
</table>
end code snippet-
I believe that it doesn't know which table to look in - what code should I add, to get these columns from the products table?
Also, there will only ever be 1 product in the cart. Not sure if this helps.
Thank you again, your support is amazing.