• I have the same UM login form on several sections on a page. The recaptcha stops working. It is invisible and I get the error message: Please confirm you are not a robot.

    Is it possible to embed the same sign in form (with different ids) on the same page? Would this be the issue since the re-captchas have all have the same id as below?

    <div class=”um-field”>
    <div class=”g-recaptcha” id=”um-221″ data-type=”image” ….

    Uncaught (in promise) Error: reCAPTCHA has already been rendered in this element

    Thank you

Viewing 1 replies (of 1 total)
  • Thread Starter devsupportatcogora

    (@devsupportatcogora)

    Solved by changing ids and names

    $(‘.g-recaptcha’).each(function(i) {
    var thisID = $(this).attr(‘id’);
    var thisName = $(this).attr(‘name’);
    $(this).attr(‘id’, thisID + ‘_’ + i);
    $(this).attr(‘name’, thisID + ‘_’ + i);
    });`

Viewing 1 replies (of 1 total)
  • The topic ‘Recaptcha not working on multiple forms’ is closed to new replies.