Rename Shipping Zones
These instructions are intended for those who are proficient in theme development. The relevant tutorials on developing & customising themes can be found on wordpress.org. If this is beyond you, we do offer a competitively-priced theme development service starting at £33 per hour. Please contact us for further details.
Version 6.0.2 & Above
Add a function to your theme’s functions.php file.
Example: Change 2 of the Zones as used in the Shipping Rates table:
add_filter('eshop_rename_ship_zone','myzones');
function myzones($zones){
$zones[1]='Apple';
$zones[2]='Pears';
return $zones;
}
This allows you to rename any of the shipping zones. The default(s) will be used if you don’t specify an alternative.
Pre Version 6.0.0
This can be achieved by using a customised version of the eShop Text Mangle plugin

FlipFlop 3.0