Looks like I might have included a minor bug into the module.
Try the following fix...
Open /includes/modules/shipping/ukpost.php
Locate line 114 which says
$pcode = $str = preg_replace('/\s\s*/', '', $destination_postcode);
Replace with...
$pcode = preg_replace('/\s\s*/', '', $destination_postcode);
Rgds
Mike.


Looks like I might have included a minor bug into the module.
Reply With Quote

