Hide WooCommerce Quantity Field
-
Hi,
The new WooCommerce version (V 7.2.0) have issue with my custom php function code snippet. I used a code to hide quantity field from the product page and elsewhere, but this new Version 7.2.0 WooCommerce didn’t let it work.
Screenshot by Lightshot (prnt.sc) – Open the screenshot and see the button there.
This is the code I used;
add_filter( 'woocommerce_is_sold_individually', 'my_remove_quantity_fields', 10, 2 ); function my_remove_quantity_fields( $return, $product ) { return true; }
I strongly suggest WooCommerce should add the feature of enabling and disabling the visibility of quantity field in their next version. Since WooCommerce allow selling of digital products, why does the quantity field still appear without option to disable it.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Hide WooCommerce Quantity Field’ is closed to new replies.