• Resolved abrovink

    (@abrovink)


    I’m using the reCaptcha field on a number of form (on a number of sites), and since around the 20th of March there’s a javascript error (shown in console) when trying to submit a form containing the reCaptcha field:

    Error: Missing required parameters: sitekey

    If I remove the reCaptha field, the form submits as desired. I’ve checked and double checked both keys, and all restriction values, and cannot find an error anywhere.

    Does anyone else experience this? Other ideas?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback! Yes absolutely, this bug has been introduced with the latest 0.8.8 version. I’m currently working on a fix which should be up today.

    In the meantime, you should set the site key & secret key using global settings this should fix the issue. Usage example:

    add_action('acf/init', 'my_acf_recpatcha_settings');
    function my_acf_recpatcha_settings(){
        
        acf_update_setting('acfe/field/recaptcha/site_key', 'SITE_KEY');
        acf_update_setting('acfe/field/recaptcha/secret_key', 'SECRET_KEY');
        
    }

    I’ll let you know as soon as the patch is up.

    Sorry for the inconvenience.

    Regards.

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Just a heads up to let you know that the latest ACF Extended 0.8.8.1 patch fixed that issue.

    Sorry for the inconvenience.

    Have a nice day!

    Regards.

    Thread Starter abrovink

    (@abrovink)

    Thanks a lot, Konrad! You’ll get a new PRO subrscriber!

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Thank you for your support @abrovink 🙂

    If you like ACF Extended, I think you gonna definitely love the Pro version!

    Have a nice day!

    Regards.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘reCaptcha: missing site key’ is closed to new replies.