Hi,

I have this pressing problem. I skipped tinkering with this for a few days hoping that i would be able to finally succeed in my aim after a few days but I couldnt. I am using freeshipper, zipship and zones table rate modules. free shipper, through help above is already working good. All the three are working alright. What i want to do is to remove or hide during checkout the zipship message that it is not available when the other shipping modules are.

So I am trying to insert the same postal code script as i dont want the zipship module to show within the zip code zones similar to the freeshipping option but i cant find where it will be inserted and im not sure if the code will really fit into the zipship code.

Here is the freeshipping code i want to insert so the zipship message wont appear when the address with the mentioned zip codes are being used:

} else {
$free_ship_postcodes = array('4328','4301','4329','4327','4032','4005');
$customer_postcode = $order->delivery['postcode'];
$check4digitcode = substr($customer_postcode, 0, 4);
$valid_digits = in_array($check4digitcode, $free_ship_postcodes);
if ($valid_digits) $this->enabled = true;

Or i hope you could have another idea how? Thank you very much in advance.

Francis