add_filter( 'woocommerce_quantity_input_args', 'custom_quantity', 10, 2 );
function custom_quantity( $args, $product ) {
global $product;
if( !$product->is_type( 'grouped' ) ){
$args['input_value'] = 1;
return $args;
else {
return $args;
}
}