Missed reCaptcha after wrong form submit vs webform module

Created on 4 February 2015, about 10 years ago
Updated 15 March 2024, about 1 year ago

When I skip reCaptcha test and just submit form I've got an error that I've wrong captcha answer. That's ok, but reCaptcha dispalayed just once - before form submit. So, user can't submit form anymore while he can't see reCaptcha field. Can you fix this?

I've tested both 2.x alpha and dev versions and they affected with this bug. Btw, I think this bug exist only with Webform module.

πŸ› Bug report
Status

Closed: cannot reproduce

Version

2.0

Component

General

Created by

πŸ‡ΊπŸ‡¦Ukraine Xrobak

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡©πŸ‡ͺGermany sagacity

    I had the same problem, using a form in a block. In my case, if reloading with removing cache (Strg+F5) it worked, but after "normal" reload (F5) the reCAPTCHA was not loaded. Fix #3 πŸ› Missed reCaptcha after wrong form submit vs webform module Closed: cannot reproduce did not fully work for me. I got a message that drupalRecaptchaOnload was missing.

    However, basically copying the module's js code from recaptcha/js/recaptcha.js to my own custom script and changing

    Drupal.behaviors.recaptcha

    to

    Drupal.behaviors.recapcha_ajax_behaviour

    seems to have solved the problem. Full code:

    (function ($, Drupal) {
        Drupal.behaviors.recapcha_ajax_behaviour = {
            attach(context) {
                $('.g-recaptcha', context).each(function () {
                    if (
                        typeof grecaptcha === 'undefined' ||
                        typeof grecaptcha.render !== 'function'
                    ) {
                        return;
                    }
                    if ($(this).closest('body').length > 0) {
                        if ($(this).hasClass('recaptcha-processed')) {
                            grecaptcha.reset();
                        } else {
                            grecaptcha.render(this, $(this).data());
                            $(this).addClass('recaptcha-processed');
                        }
                    }
                });
            },
        };
      
        window.drupalRecaptchaOnload = function () {
            $('.g-recaptcha').each(function () {
                if (!$(this).hasClass('recaptcha-processed')) {
                    grecaptcha.render(this, $(this).data());
                    $(this).addClass('recaptcha-processed');
                }
            });
        };
    })(jQuery, Drupal);
    
Production build 0.71.5 2024