Here is the form.
The section giving validation problems is '
SWDC Food stall license information' (secFoodApplication)
The controlled field is
What other facilities will be provided (txtOtherFacilities)
I have switched off validation for txtOtherFacilities while we figure this out, just presenting the required icon to try to encourage completion, but if the field is revealed, it will be because the user wants it there (controlled by chkGrpFacilities), so it will be ok like that. I had a number of other optional fields, but have redesigned it so they all need to be completed.
I notice that in another system (different site), I have more complex parent/child set-ups and the validation doesn't fire for controlled fields there, so I think it's something to do with this form or this installation.
This is also the form I am having stripe implementation problems with, so you will see the mechanism I use to populate the bfPaymentSelect field. (in answer to your question in that topic)
crosstec.org/en/forums/41-breezingforms-...html?start=24#247460
bfPaymentSelect is populated in the
site fees actionscript on page 4
This is also the form I was having PoliPay problems with, and getting errors when I included
//curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
(
crosstec.org/en/forums/coding/127927-pay...teways.html?start=12
)
I also had to use ob_start instead of calling the curl_exec directly to avoid errors.
ob_start();
curl_exec( $ch );
$response = ob_get_contents();
ob_end_clean();
curl_close ($ch);
So it will be telling if this all works perfectly for you.