Hi,
An ability to add recaptcha to BuddyPress Widget Login is available in Google Captcha Pro (reCAPTCHA) by BestWebSoft – http://bestwebsoft.com/products/google-captcha/.
Sincerely,
BestWebSoft Support Team
The question is regarding bbpress and your answer specifies BuddyPress, two completely different forum plugins. I am facing a similar issue with bbpress here. http://recon.getventive.com/register/
Note I have tried with both the lite version and the pro version of the plugin
Hi,
We apologize for the misunderstanding occurred.
Try to do the following:
1) Go to the plugin settings page;
2) Open Custom code tab;
3) Mark “Activate” checkbox in the “Editing bws-custom-code.php” section;
4) Add the following code:
function unbind_js_form_submit() { ?>
<script type="text/javascript">
(function($) {
$( document ).ready( function() {
$( '.bbp-login-form' ).unbind( 'submit' );
});
})(jQuery);
</script>
<?php }
function add_unbind_script() {
wp_enqueue_script( 'bws_unbind_script', unbind_js_form_submit(), array( 'jquery' ), false, true );
}
add_action( 'wp_footer', 'add_unbind_script', 100 );
5) Save changes.
Sincerely,
BestWebSoft Support Team