Viewing 2 replies - 1 through 2 (of 2 total)
  • 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Captcha Doesn't work on Custom Form’ is closed to new replies.