This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Description: Handle products and product in categories that can not be sold or shipped with anything else | |
*/ | |
add_filter( 'woocommerce_add_to_cart_validation', 'wc_add_to_cart_validation_filter_callback', 10, 3 ); | |
function wc_add_to_cart_validation_filter_callback( $passed, $product_id, $quantity ) { | |
if( WC()->cart->is_empty() ) | |
return $passed; | |
// List of product Ids that can not be sold with anything else |