Is it possible to have the default quantity of the single product field set to 1 instead of 0?
I’ve been looking into using this:
Edit:
Resolved my problem using the dynamically populated fields with the parameter name of default_qty
in the quatity field and added the following to the functions file:
add_filter( 'gform_field_value_default_qty', 'default_qty' );
function default_qty( $value ) {
return '1';
}