I think your guess is probably correct.
Skipper_2: In super_order.php, look for these lines:
Code:
$contents[] = array('text' => TEXT_INFO_SHIPPING_METHOD . ' ' . $shipping_method);
$contents[] = array('text' => TEXT_INFO_IP_ADDRESS . ' ' . $oInfo->ip_address);
and change to:
Code:
$contents[] = array('text' => TEXT_INFO_SHIPPING_METHOD . ' ' . $oInfo->shipping_method);
$contents[] = array('text' => TEXT_INFO_IP_ADDRESS . ' ' . $oInfo->ip_address);
That will make the detailed shipping type appear on the summary page (on the right hand side of the page for the order line you have selected). Use the same logic to make it change on the other pages also.
Bookmarks