Manufacturers Shipping Limitation

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hello,
We have an issue in our e-shop that we want to resolve. We are based in Europe and two of our manufacturers do not want their products to be shipped outside of the EU Nation Countries. We have set all the countries out of the EU to "No Shippable" but this unfortunately applies to all the products and not the specific manufacturers we want. Is there a setting that we could use in order to separate these two brands to be available only in EU?
Thank you in advance.
4 years ago
It's not available out of the box.  Shipping Director can prevent checkout from continuing using its ErrorExit rule.  See this blog:
Restricted Products Can’t Ship to Outside of Certain Countries


In your case, set up the IsRestrictedCountry as per the blog, and then the Expression would be

[IsRestrictedCountry] and Items.Any(Product.HasManufacturer("SomeManA") or Product.HasManufacturer("SomeManB") )


(It's an old blog; you can now use just 'Country' rather than ShippingAddress.Country.TwoLetterIsoCode:

IsRestrictedCountry     ![EU_27].Contains(Country)

and update the EU countries as needed.


Also, if you like, you can use the manufacturer Id instead of name:  E.g.  HasManufacturer(2)
)
4 years ago
Thank you very much for your help.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.