foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { if ( $cart_item['product_id'] == $your_product_id_here ) { WC()->cart->remove_cart_item( $cart_item_key ); } }