Add role on checkout if cart contains certain products
I need to add a role to a user if they have a specific category of products within their cart. I have gotten the rule to work when they have one of these products in their cart, but it seems to break when there are multiple products or products of a different type. Right now my rule looks like this:
Order Contains a Particular Product: SKU X
Or
Order Contains a Particular Product: SKU Y
Or
Order Contains a Particular Product: SKU Z
Any help with this would be appreciated. Thanks!
Comments
I had the same problem.
Instead of using:
Order Contains a Particular Product: SKU X
Or
Order Contains a Particular Product: SKU Y
Or
Order Contains a Particular Product: SKU Z
You should change it to:
Or
+ Order Contains a Particular Product: SKU X
+ Order Contains a Particular Product: SKU Y
+ Order Contains a Particular Product: SKU Z
That should work!