If you want it to take the 1st four digits of the postcode then open the orderscript.pl file and find the line
$sPostCode = substr($sPostCode, -4, 4);
change the -4 to 0 and it will read from the start of the postcode
hope this might help some of you
D
$sPostCode = substr($sPostCode, -4, 4);
change the -4 to 0 and it will read from the start of the postcode
hope this might help some of you
D
Comment