Hi,
I want to use this module so customers can elect for a high speed option to their order. I'd like to be able to use it site wide but currently it only seems to work when items have a shipping rate applied.

If an item is on the free shipper, customers cannot select high speed - but I would like them to be able to select this. Is there an easy way to alter the programming code in this module so the option is available regardless of the shipping status of the item. Therefore when a customer wants the item in 2-3 days they just check the additional high speed option and pay the extra fee.

Thanks,
Cat

PS the code that seems to affect it is:

// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_HIGHSPEED_STATUS == 'True') ? true : false);
}
if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_HIGHSPEED_ZONE > 0) ) {
$check_flag = false;
$check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_HIGHSPEED_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
while (!$check->EOF) {
if ($check->fields['zone_id'] < 1) {
$check_flag = true;
break;
} elseif ($check->fields['zone_id'] == $order->delivery['zone_id']) {
$check_flag = true;
break;
}
$check->MoveNext();
}
if ($check_flag == false) {

$this->enabled = false;
}
}
}