Quote Originally Posted by BouncerFL View Post

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']; 
When I make these changes in any of the SO files (orders, invoice, packingslip) in order to get the shipping method to show (not just the carrier) the page just comes up blank. Has anyone else encountered this problem?