Hi 
Thanks for the suggestion!
I was looking for a snippet to remove the quantity selector both on single product pages and the cart page. The customers should have the opportunity to buy more of the same item, however, I need them to go back to the product to add a new item to the cart, as they should be able to attach a unique internal reference number to each item. The item/product is a project in our system, and I need to offer the customers the opportunity to add their own internal project reference to the project they buy in our shop for the ease of their internal accounting.
I’ve found this snippet:
function woo_remove_all_quantity_fields( $return, $product ) { return true; } add_filter( ‘woocommerce_is_sold_individually’, ‘woo_remove_all_quantity_fields’, 10, 2 );
Like the inventory setting it makes it impossible to add more of the same item to cart afterwards. Do you have any suggestions on how to solve this problem?