Available for download: https://www.zen-cart.com/downloads.php?do=file&id=312Originally Posted by lat9
Available for download: https://www.zen-cart.com/downloads.php?do=file&id=312Originally Posted by lat9
using 156c
Hi
I've found a bug with the latest zipship. Most of my postcodes are 4 digits long, however because some postcode areas are so big I split them by adding a suffix to them, eg I have 6056 charged at $30 and 6056A charged at $35.
I've just discovered that the "A" is getting chopped off and my 6056A is displaying as "6056" and charging $30.
Thanks.
OK, I checked my old version of zipship and noticed this -
//$this->dest_zipcode = substr (strtoupper ($order->delivery['postcode']), 0, ENTRY_POSTCODE_MIN_LENGTH);
$this->dest_zipcode = strtoupper ($order->delivery['postcode']);
Assuming I made this change myself in the past, although I don't remember!!