
Originally Posted by
BadDog1369
Figured it out. For the stock packing slip, in admin/packingslip.php find this
<tr>
<td class="main"><?php echo zen_address_format($order->delivery['format_id'], $order->delivery, 1, '', '<br>'); ?></td>
</tr>
and below that, add this
<tr>
<td class="main"><?php echo $order->info['shipping_method']; ?></td>
</tr>
For Super Orders, in admin/super_packingslip.php find this
for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) {
if ($order->totals[$i]['class'] == 'ot_shipping') {
$format_shipping = explode(" (", $order->totals[$i]['title'], 2);
$shipping_method = rtrim($format_shipping[0], ":");
break;
}
}
and comment it out. Then find this
<td class="main"><?php echo $shipping_method; ?></td>
and change it to this
<td class="main"><?php echo $order->info['shipping_method']; ?></td>
But don't change anything until you make backups of the files to be changed!!!