
Originally Posted by
weif
I think I've found another issue. It appears that if a delivery address is entered as a ZIP+4 (i.e. 59701-6593), the check fails and doesn't match any delivery options.
It looks like changing
Code:
$this->dest_zipcode = $order->delivery['postcode'];
to
Code:
$this->dest_zipcode = substr($order->delivery['postcode'],0,5);
around line 103 of includes/modules/shipping/zipship.php appears to correct the issue, but there may still be something missing, or some issue this causes.
Bookmarks