• Your plugin works great. And Google reCAPTCHA works no problem. The only little problem I have I would like to see reCAPTCHA text “I’m not a robot” on my site in Russian. Is it somehow possible to do since reCAPTHA has the language setting hl=ru?

    • This topic was modified 7 years, 11 months ago by Svetlana0777.
Viewing 1 replies (of 1 total)
  • admin desk => plugins => contact form 7 => editing

    Open file contact-form-7/modules/recaptcha.php and find function:

    function wpcf7_recaptcha_enqueue_scripts() {
    $url = ‘https://www.google.com/recaptcha/api.js’;
    $url = add_query_arg( array(
    ‘onload’ => ‘recaptchaCallback’,
    ‘render’ => ‘explicit’;

    wp_register_script( ‘google-recaptcha’, $url, array(), ‘2.0’, true );
    }

    Add hl argument after ‘render’ like this

    function wpcf7_recaptcha_enqueue_scripts() {
    $url = ‘https://www.google.com/recaptcha/api.js’;
    $url = add_query_arg( array(
    ‘onload’ => ‘recaptchaCallback’,
    ‘render’ => ‘explicit’,
    ‘hl’ => ‘ru’ ), $url );

    wp_register_script( ‘google-recaptcha’, $url, array(), ‘2.0’, true );
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to have reCAPTCHA in Russian?’ is closed to new replies.