Inquiry about Disabling reCAPTCHA at Runtime
-
Hello Formidable Forms Support Team,
I hope this email finds you well.
I’m reaching out to inquire about the possibility of disabling reCAPTCHA at runtime for forms created using Formidable Forms. We have a specific requirement where we need to control the visibility of reCAPTCHA based on certain conditions or events occurring during form submission.
Could you please provide guidance on whether there’s an existing feature, hook, or method available within Formidable Forms to achieve this functionality? If not, could you suggest any workarounds or custom solutions that we could implement to accomplish this task?
We used following hook. It did hide the recaptcha field but it was still validating it.add_filter(
‘frm_fields_in_form’,
array(
$this,
‘remove_recaptcha_field_from_list’,
),
11,
2
);
So in short we need to bypass recaptcha programmatically.Any insights or assistance you can provide on this matter would be greatly appreciated.
Thank you for your time and support.
Best regards,
- The topic ‘Inquiry about Disabling reCAPTCHA at Runtime’ is closed to new replies.