Skip to content
Advertisement

Add to cart validation based on product attribute in WooCommerce

I’m trying to add a filter when a customer adds a product to the cart, to allow it or not.

We just need to compare one attribute of the WooCommerce products.

  • If cart is empty : Add to cart ok
  • If cart has 1 or more items : check Attribute XXX value of products
  • If Attribute value is the same : Add to cart ok
  • If Attribute value is different : Add to cart denied and message will display

I have this code so far, but it doesn’t work well at all, and I’m unsure why?

JavaScript

Any help is more than appreciated.

Advertisement

Answer

  • While you specify that the woocommerce_add_to_cart_validation hook contains 5 arguments, you pass only 2
  • global $woocommerce; is not necessary, use WC() instead

So you get:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement