It should still be something that needs to be changed in the super_orders.php file...you usually can tell which file is active by looking at the URL. When I am looking at the detail view of an order, the URL still ends with /admin/super_orders.php?page=1&oID=1106&action=edit..which means the page is generated by the super_orders.php file. Sometimes there are submodule files that are called within the page script though, so there is still a chance that what you are looking for is in another file other than super_orders.php.
From what I can see, you need to modify this section in super_orders.php:
Code:
// Short shipping display
// Formats shipping entry to remove the TEXT_WAY define
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);
$clean_shipping = rtrim($format_shipping[0], ":");
$display_title = $clean_shipping . ':';
}
But I am not sure how to do it. My "brute force" guess would be to change this line:
$display_title = $clean_shipping . ':';
to this:
$display_title = $oInfo->shipping_method . ':';
But you will have to play around with it and see what works.
Bookmarks