• Resolved bernardh99

    (@bernardh99)


    What is the recommended way to add ReCapthca V2 or 3? I see some mentions for wpbruiser but it has not been updated in 3 years

Viewing 1 replies (of 1 total)
  • I recommend using hCaptcha.

    I did some testing on how to add a hCaptcha to HTML forms:

    1. Install and activate the hcaptcha plugin, create a free hCaptcha account and add your credentials in the hCaptcha plugin settings
    2. Add the following code snippet to your website:
    add_filter('hf_validate_form', function( $error_code, $form, $data ) {
    $result = hcaptcha_verify_post();
    if ( null !== $result ) {
    $error_code = 'catcha_failed';
    }
    return $error_code;
    },10,3);
    
    add_filter(
    'hf_template_tags',
    function( $tags ) {
    $tags['hcaptcha'] = do_shortcode( '[hcaptcha]' );
    return $tags;
    }
    );
    add_filter( 'hf_validate_form_request_size', '__return_false');
    1. add {{hcaptcha}} to your HTML-Forms fields where you want to show the captcha.

    Hope that helps. If you have any questions, please let me know!

Viewing 1 replies (of 1 total)
  • The topic ‘Google ReCapthca’ is closed to new replies.