Hi there,
I’ve got a customer, a local business, that delivers it’s products to customer but only in local area. Its there a ay to allow delivery only for a specific list of postcodes ?
This is for France…
Thanks
Hi there,
I’ve got a customer, a local business, that delivers it’s products to customer but only in local area. Its there a ay to allow delivery only for a specific list of postcodes ?
This is for France…
Thanks
Hey @Pasolint
This looks like a great use case for our Shipping webhooks. This way you can offer shipping only for customer inside the allowed list of zip codes.
Cheers,
Hey @slemieux
Actually this is not to be connected to a 3rd party delivery service, as the client will be making the deliveries himself.
But I’ve dug further and it looks like I could be able to make a list in regex like this:
((33000)|(33410)|(33200)|(33120))
Can you confirm if this should work ? I’ve never use regex before…
Thanks
Pascal
You are right, I totally forgot about this feature.
You could simplify the regex to:
33000|33410|33200|33120
Cheers,
Alright, that is super straight forward indeed !!!
Thanks