Try this skin1/mail/html/order_data.tpl
Around line 14 under
Code:
<th width="60" bgcolor="#cccccc">{$lng.lbl_sku}</th>
add
Code:
<th width="100" bgcolor="#cccccc">{$lng.lbl_manufacturer}</th>
Around line 27 under
Code:
<td align="center">{$product.productcode}</td>
add
Code:
<td align="center">{* RG Add Manufacturer to Invoice Start *}
{php}
$manid=$this->_tpl_vars['product']['manufacturerid'] ;
$productman= func_query_first_cell("select manufacturer from xcart_manufacturers where manufacturerid=$manid");
if ($productman!="") {
echo "
$productman ";
}
{/php}
{* RG Add Manufacturer to Invoice End *}</td>
Then around line 74
Above
Code:
{$lng.lbl_gift_certificate}: {$gc.gcid}<br />
Add
Code:
<td nowrap="nowrap">
Greg