Hello ASJInc,
Perhaps, you added the functionality of captcha checking incorrectly.
You should add the lines to the function of the entered data checking
if( function_exists( 'cptch_check_custom_form' ) &&
cptch_check_custom_form() !== true ) echo "Please complete the
CAPTCHA."
or
<?php if( function_exists(
'cptch_check_custom_form' ) && cptch_check_custom_form() !==
true ) echo "Please complete the CAPTCHA." ?>
You should add it where the form validation runs.
Kind regards,
Support Team
Thread Starter
ASJInc
(@asjinc)
This client is using a third-party service as a lead generator. Is there any easy way to validate the form locally before it being sent that you could recommend?
Currently they have the form action set to:
<form action="https://app.leadconduit.com/v2/PostLeadAction" class="contact" method="POST">
How can I validate the form before sending to them?