wordpress - Stop form submission on photo uploding (userpro plugin) -


i using user-pro plugin , in registration page having field below..

(1) profile-picture
(2) first name (field required validation)
(3) last name (field required validation)
(4) country....etc

problem when upload image , click on submit button fire validation other field , show error message whey happens.

so how can stop validation fire automatically..?

yes fire because of below code found in script.min.js file. below code fire trigger input.

    form.find('input').each(function(){         jquery(this).trigger('blur');     }); 

just remove above code file , problem solved.


Comments