U wilt in uw webshop de optie aantal (quantity field) bij uw producten verwijderen.
Als u de onderstaande code toevoegt in het functions.php bestand van uw theme zal deze optie niet meer in beeld zijn.


function wc_remove_all_quantity_fields( $return, $product ) {
return true;
}
add_filter( 'woocommerce_is_sold_individually', 'wc_remove_all_quantity_fields', 10, 2);