Hi,
The mail content in HikaSerial 1.7.4 is not right compatible with the new mail template for HikaShop 2.2.2
In the next version, we will fix it.
For the moment, you can override the views (in front-end and back-end) "orderserial | show_email_notification_html" and change the content.
<?php
if(!empty($this->data)) {
?>
<table width="100%">
<tr>
<td style="font-weight:bold;background-color:#DDDDDD"><?php echo JText::_('SERIAL_DATA');?></td>
<td style="font-weight:bold;background-color:#DDDDDD"><?php echo JText::_('ATTACHED_TO_PRODUCT');?></td>
</tr>
<?php
foreach($this->data as $data) {
?>
<tr>
<td><?php echo $data->serial_data; ?></td>
<td><?php echo $data->order_product_name; ?></td>
</tr>
<?php
}
?>
</table>
<?php
}
?>
The idea is to remove the "<tr><td>" at the beginning and at the end of the view.
Regards,