Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save azizultex/0356d9aa922c97b5d30e to your computer and use it in GitHub Desktop.
Save azizultex/0356d9aa922c97b5d30e to your computer and use it in GitHub Desktop.
Contact Form 7 Google Recaptcha no captcha Translation Support WPML
/* add below code in your theme functions.php
https://wordpress.org/support/topic/how-to-set-the-recaptcha-language
*/
function custom_recaptcha_enqueue_scripts() {
wp_deregister_script( 'google-recaptcha' );
$url = 'https://www.google.com/recaptcha/api.js';
$url = add_query_arg( array(
'onload' => 'recaptchaCallback',
'render' => 'explicit',
'hl' => ICL_LANGUAGE_CODE ), $url );
wp_register_script( 'google-recaptcha', $url, array(), '2.0', true );
}
add_action( 'wpcf7_enqueue_scripts', 'custom_recaptcha_enqueue_scripts', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment