Hi
We found out the problem
We don't want in our site confirmation mail field - therefore we disable this field
but in your code you don't have option to disable in plugin configuration.
the plugin validate in javascript that both email and confirmation email are the same. If the emails are not the same, it return false, and the form is not submitted
In line 153:plugins\system\f90_registration_validation_pro\tmpl\validation.js
we comment the next lines - and it solve our problem
if(validate_email_confirm() == false){
return_value = false;
}
I think it will be better if you will have option in the plugin configuration to select - what are the fields that I want to validate on
Thanks
Yael