I'm surprised nobody responded to this earlier. Technically, if you do not use "Zone Rates" shipping (maybe others) you could change it to 'title'; but, that is an aweful hack. A better way to do it would be to create another variable and display that. I am using ZC version 1.3.8.
Hacking a core file, or "How can I make upgrading harder?"
[FONT="Courier New"]includes/modules/shipping/zones.php[/FONT]
around line 118:
PHP Code:
function quote($method = '') {
global $order, $shipping_weight, $shipping_num_boxes, $total_count;
$dest_country = $order->delivery['country']['iso_code_2'];
// add the next line
$dest_country_name = (($dest_title =$order->delivery['country']['title']) == '' ? $dest_country : $dest_title);
$dest_zone = 0;
$error = false;
Then change $dest_country to $dest_country_name in three places in the same file.
around line 174:
PHP Code:
$shipping_method = MODULE_SHIPPING_ZONES_TEXT_WAY . ' ' . $dest_country_name . $show_box_weight; // change this line
$done = true;
around line 188:
PHP Code:
if (($_SESSION['cart']->show_total() - $_SESSION['cart']->free_shipping_prices()) <= $zones_table[$i]) {
$shipping = $zones_table[$i+1];
$shipping_method = MODULE_SHIPPING_ZONES_TEXT_WAY . ' ' . $dest_country_name; // change this line
around line 202:
PHP Code:
if (($total_count - $_SESSION['cart']->free_shipping_items()) <= $zones_table[$i]) {
$shipping = $zones_table[$i+1];
$shipping_method = MODULE_SHIPPING_ZONES_TEXT_WAY . ' ' . $dest_country_name; // change this line
$done = true;