• Resolved AiratTop

    (@airathalitov)


    Can you add recaptcha on “Lost passwords” page (/my-account/lost-password/) and Login page (/wp-login.php)?

    User will be activate that feature in plugin settings with using simple checkbox
    (plugin’s settings is here: /wp-admin/admin.php?page=bp-settings)

Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Shea Bunge

    (@bungeshea)

    Just thought I’d let you know I think this is a very good idea, and I’m on the way to implementing it in the plugin. You can expect it in a release soon.

    Thread Starter AiratTop

    (@airathalitov)

    @bungeshea
    thanks!

    Thread Starter AiratTop

    (@airathalitov)

    Hi, @bungeshea

    When will you update your plugin?

    Plugin Author Shea Bunge

    (@bungeshea)

    Hi @airathalitov

    I know it has taken me a long time to get around to this, but I have just released version 3.0.0 which introduces this feature, as you suggested. Thanks for the suggestion, and I hope you enjoy using the new feature.

    Thread Starter AiratTop

    (@airathalitov)

    @bungeshea
    Ok, thanks!

    But I still see 2.1.2 version

    Plugin Author Shea Bunge

    (@bungeshea)

    The latest version should be available for download now.

    Thread Starter AiratTop

    (@airathalitov)

    Thanks!

    Can you add next updates:

    On https://airat.biz/wp-login.php
    <div style=”margin: 12px auto;” class=”security-question-section”>
    (like on registration page)

    And why I can’t see recaptcha on lost password page? (when checkbox activated)
    https://airat.biz/my-account/lost-password/
    I think, you need check it when woocommerce plugin is activated.

    • This reply was modified 8 years, 1 month ago by AiratTop.
    Plugin Author Shea Bunge

    (@bungeshea)

    The update adds a recaptcha to the WordPress lost password page – example.com/wp-login.php?action=lostpassword. From my test install, BuddyPress doesn’t add its own lost password page. Are you using a different plugin for it on your site?

    Thread Starter AiratTop

    (@airathalitov)

    Page https://airat.biz/wp-login.php?action=lostpassword have recaptcha too.

    I think this /my-account/ page coming from woocommerce plugin.

    How can I set page /wp-login.php?action=lostpassword by default?

    Thread Starter AiratTop

    (@airathalitov)

    1. I found some solution for this issue:
    https://wordpress.stackexchange.com/questions/133647/how-to-redirect-users-to-custom-lostpassword-page

    /**
     * Custom lost password page https://goo.gl/RB9Adp
     */
    function wpse_133647_custom_lost_password_page() {
    	return home_url('/wp-login.php?action=lostpassword');
    } 
    add_filter('lostpassword_url', 'wpse_133647_custom_lost_password_page');

    Now my lostpassword page is: https://airat.biz/wp-login.php?action=lostpassword

    2. Can you add <div style="margin-top: 15px;" class="security-question-section">
    on https://airat.biz/wp-login.php page?

    • This reply was modified 8 years, 1 month ago by AiratTop.
    • This reply was modified 8 years, 1 month ago by AiratTop.
    • This reply was modified 8 years, 1 month ago by AiratTop.
    • This reply was modified 8 years, 1 month ago by AiratTop.
    Plugin Author Shea Bunge

    (@bungeshea)

    Great to hear that things are working with the lost password page.

    I’ve just released version 3.2.0 which should improve the CSS styling on the login page. It also adds a new option for using a dark theme for the reCAPTCHA, which I think would look a lot better on your site.

    Hopefully this improves things!

    Thread Starter AiratTop

    (@airathalitov)

    Thanks for update!
    Light theme looks better. ??

    Can you add top margin on https://airat.biz/wp-login.php page?

    Example:
    <div style="margin-top: 15px;" class="security-question-section">
    or

    .security-question-section {
        margin: 10px auto !important;
    }
    Plugin Author Shea Bunge

    (@bungeshea)

    The current styles are optimized to work best with the standard WordPress login page. As yours is heavily customized, it may be better to add this CSS to the wp-content/themes/boss/css/style-login.css file, or if you would prefer they were separate from the theme, add this snippet to the theme’s functions.php file, a custom plugin, or a code snippet:

    add_action( 'login_enqueue_scripts, function () { ?>
        <style>
        .security-question-section {
            margin: 10px auto !important;
        }
        </style>
    <?php }, 99 );
    • This reply was modified 8 years, 1 month ago by Shea Bunge. Reason: added code indent
    Thread Starter AiratTop

    (@airathalitov)

    I used that code:

    add_action( 'login_enqueue_scripts', function () { ?>
        <style>
        #loginform .security-question-section {
    	margin: 15px auto  0px !important;	
        }
        </style>
    <?php }, 99 );

    You can use id #loginform for customize css on login page.
    Notify me, if you will add this css by default.

    Here is final version of my pages:
    https://airat.biz/wp-login.php
    https://airat.biz/wp-login.php?action=lostpassword

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Recaptcha on “Lost passwords” and Login page’ is closed to new replies.