II need to remove the quantity field for a specific variable product on single product Page, cart Page and everywhere else.
I used this:
add_filter( 'woocommerce_is_sold_individually', 'wc_remove_all_quantity_fields', 10, 2 );
function wc_remove_all_quantity_fields( $return, $product )
{
return( true );
}
This remove the quantity field for all products.
How to target a specific variable product, to remove the quantity field everywhere?
Try the following, adding your desired product ID(s) below (work for simple, variable and variations product type):
Code goes in functions.php file of your child theme (or in a plugin). Tested and works.