• Hi,
    Can I automatically disable/deactivate the linked products from code? In some circumstances, I want that the linked products not be added to the cart. Do you have a hook or can you provide another way to do this?
    Thank you very much.

Viewing 1 replies (of 1 total)
  • Plugin Author WPClever

    (@wpclever)

    Hi,

    Please update our plugin to the latest version 4.1.8 first, then you can use the below snippet (How to add custom code?):

    add_filter( 'woofs_get_items', 'woofs_prevent_for_products', 99, 2 );
    function woofs_prevent_for_products( $items, $product_id ) {
    	if ( $product_id === 1298 ) {
    		return false; //prevent for product ID 1298
    	}
    
    	return $items;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Deactivate linked products’ is closed to new replies.