We have a form using multiple Single Product Fields, they are all required but when a user enter "0" it won't allow them to submit the form. Anyway around this?
We have a form using multiple Single Product Fields, they are all required but when a user enter "0" it won't allow them to submit the form. Anyway around this?
The only way I could think of would be to not make them required because 0 = null = not filled out.
Is there another way to manipulate it? I tried using jquery to change any empty values to the word "none" but it won't accept it like that.
That field only allows for number values. Again, I am pretty certain the only way would be to remove the required clause from the fields.
What about removing the required field and only having the form submit if (input_1 + input_2 > 0)? Is this possible?