Viewing 8 replies - 1 through 8 (of 8 total)
  • It needs the do_action for both register_form and login_footer. Other plugins could cause a problem. I might be able to determine the cause if you deactivate the Social login plugin and let me see your page while the problem exists.

    Thread Starter antonmymrikov

    (@antonmymrikov)

    Hi Mike!
    I deactivated Social plugin several seconds ago, but still don’t see reCAPTCHA. You can check it.
    https://pharm-community.com/login

    Thread Starter antonmymrikov

    (@antonmymrikov)

    I think the page is missing either login_footer or wp_footer because I don’t see any FS reCAPTCHA scripts loading where they should be at the page footer area

    It’s also possible the ajax is causing the footer script to not be added, but I don’t really know yet

    Thread Starter antonmymrikov

    (@antonmymrikov)

    This is a code from page.php:
    get_footer();
    footer.php

    <?php do_action('generate_before_footer'); ?>
    <div <?php generate_footer_class(); ?>>
    	<?php 
    	do_action( 'generate_before_footer_content' );
    	do_action( 'generate_footer' );
    	do_action( 'generate_after_footer_content' ); 
    	?>
    </div><!-- .site-footer -->
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    Plugin “Social login” works well, so I think problem with reCAPTCHA.

    Maybe the problem is you have wp_footer on a login page, and not the login_footer instead

    My plugin follows WP Standards:
    Login page will need login_form and login_footer
    Register page will need register_form and login_footer

    Thread Starter antonmymrikov

    (@antonmymrikov)

    Ok! Thank you Mike. I will try to add this one in my template page.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Login with AJAX and reCAPTCHA’ is closed to new replies.