Shipping rate by zip code for Canada (Quebec)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
I'm using the "Manual (Fixed or By Weight and By Total)" plugin in nopCommerce version 4.10 and I woul like to know if it is possible the setup differents fixed costs by zip code for Canada.

In Canada (Quebec) all zipcode are a sequence of 6 numbers and letter. Exemple: J6E 3A4

I would like to specific rate for every zip code that start with the same first 3 characters. Something like that: J6E ***.

I know thats work for the exact match but there is a way to use it only with the first 3 characters?

Thanks for you help...
4 years ago
No, the "Manual (Fixed or By Weight and By Total)" plugin does the exact match.
You would need to customize the code, or find a 3rd party plugin - e.g.
Shipping Director can do it - e.g.

Type:   OptionExit
Name: Shipping
Expression:  ",J6E,XYZ,ABC,".Contains( Zip.Substring(0,3) )
Rate Expression: 10.00
4 years ago
ok Thanks much!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.