find, in super_orders.php:
PHP Code:
if ($order->totals[$i]['class'] == 'ot_shipping') {
$format_shipping = explode(" (", $order->totals[$i]['title'], 2);
$clean_shipping = rtrim($format_shipping[0], ":");
$display_title = $clean_shipping . ':';
}
else {
$display_title = $order->totals[$i]['title'];
} */
and replace with this:
PHP Code:
$display_title = $order->totals[$i]['title'];
Bookmarks