Support is monitored from Monday to Saturday in office hours from the GMT timezone. Our response time can be up to 2 business days.

Notice: We do not accept any customization. Please Read Envato Support Policy. But we still can help with little snippets if that's possible!

Okay
  Print

Change reCaptcha Language on Register Form

1. Please go to your FTP/CPanel, and go to folder "wp-content/plugins"

2. Create a new file and name it with "bp-custom.php" file in folder "wp-content/plugins". If you already have it, please just open it.

3. Put this snippet on the file. Change "en" on line 3 of snippet with your language WordPress code, and save.

<?php
/** Change Recaptha language */
add_filter('wp_head', 'recapthca_language');
function recapthca_language(){
    $rl = '<script src="https://www.google.com/recaptcha/api.js?hl=en"></script>';
    echo $rl;
}