Hey Jerome,
Thanks - found the overrides
I can see that the tag for showing the custom fields is {TXT:ADDITIONAL_INFORMATION}
What if I want to hide just a few custom fields from the email? Is that possible?
Attached the fields I would like to hide.
Solution: OK so the email template to edit is : Market: Order status notification and modified it to include :
if(!empty($itemFields)) {
foreach($itemFields as $field) {
$namekey = $field->field_namekey;
if(!isset($item->$namekey) || !strlen($item->$namekey) || $field->field_namekey=="doesyouartworkhavebleedcropmarks" || $field->field_namekey=="isyourartworkapdfactualsize" || $field->field_namekey=="supplier" || $field->field_namekey=="shippingcost" || $field->field_namekey=="amount"){
continue;
}
$t .= '<p>' . $fieldsClass->getFieldName($field) . ': ' . $fieldsClass->show($field, $item->$namekey, 'user_email') . '</p>';
}
}
Of course change to your own field names.