Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    Please follow the instruction below.

    = I would like to add Captcha to custom form on my website. How can I do this? =

    1. Install Captcha plugin, activate it.
    2. Open file with the form (where it is necessary to implement captcha).
    3. Find the place where it is necessary to insert code to display captcha.
    4. Insert lines to display captcha

    if( function_exists( 'cptch_display_captcha_custom' ) ) { echo "<input type='hidden' name='cntctfrm_contact_action' value='true' />"; echo cptch_display_captcha_custom() } ;

    If the form is html it will be necessary to insert the line with tags php

    <?php if( function_exists( 'cptch_display_captcha_custom' ) ) { echo "<input type='hidden' name='cntctfrm_contact_action' value='true' />"; echo cptch_display_captcha_custom(); } ?>

    5. It is necessary to add the lines in the function of check of the entered data (where it is checked what the user enters and if everything is correct the mail will be sent)

    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." ?>
    It is possible to enter this line in variable and display this variable in required place instead of echo "Please complete the CAPTCHA.". If there is a variable (which is answered for the displaying of the errors) in the function of check so this phrase can be added to this variable. If the function returned true then you have entered captcha properly. In other cases the function will return false.

    Regards,
    Oksana

    Thread Starter templs

    (@templs)

    Thanks, Oksana!
    Will try it today…

    Hi – this looks great but where do if find the right place in the Buddypress registration page to put the code?

    Hello,

    Do we need to suggest you where to put the code for captcha displaying into the’Buddypress registration page’? For now it is a hard to say, because we didn’t plan that option, it is necessary to study buddypress plugin and its code structure. So for now this option will be not available.

    Regards,
    Oksana

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Captcha] Does it support buddypress?’ is closed to new replies.