Ajeh-
I've edited/added this at line 80 on the ot_shipping module
PHP Code:
function process() {
global $order, $currencies;
if ($_SESSION['shipping'] == 'free_free') {
$this->output[] = array('value' => $order->info['shipping_cost']);
}
else {
$this->output[] = array('title' => $order->info['shipping_method'] . ':',
'text' => $currencies->format($order->info['shipping_cost'], true, $order->info['currency'], $order->info['currency_value']),
'value' => $order->info['shipping_cost']);
}
}
and it's done the trick. I know enough PHP to do this, but not enough to definitively say it's safe. I've tested it using every shipping method and all seems copacetic, but perhaps you can tell me if anything sticks out to you?