I'm trying to add reCaptcha to my registration form. I have short code to do so. Is there any way to do this? I tried just putting it in the page but it didn't show up. Thank you!
YOu can try adding the following code in your wplms-customizer.php file in wplms customizer plugin:
add_action('login_form','recaptacha_add');
function recaptacha_add(){
echo do_shortcode('[your shortcode]');
}
<p class="MsoPlainText">That didn't work. I have a PHP string I can use too. I tried just putting it in the buddy press where I wanted it but it didn’t work.</p>
<p class="MsoPlainText"><?php if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ; ?></p>
<p class="MsoPlainText">Where could I put that? To make it show up on the registration form.</p>
Never mind I used a different plugin specifically for Buddypress. Thanks!