• Resolved Josh Eaton

    (@jjeaton)


    Just curious if you are planning on implementing (and how you’d implement) the new password related features in WP 4.3.

    A few that come to mind:

    * Not requiring confirmation of password when resetting password.
    * Auto-generated password when resetting password.

    Thanks! I love this plugin and am looking forward to compatibility with 4.3

    https://www.ads-software.com/plugins/theme-my-login/

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter Josh Eaton

    (@jjeaton)

    Another is when Custom Passwords isn’t enabled, the plugin should default (or at least provide the option of) to sending a password reset email instead of emailing the password in plaintext, as WP core has changed this to no longer email passwords.

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Yes, this is an incompatibility with WP 4.3. Please note the “Compatible Up To” tag at https://www.ads-software.com/plugins/theme-my-login/.

    Mike

    (@thewordpressdude)

    I see that Theme my Login is only compatible up to 4.2.4. My question is, will there be an update to make it compatible with version 4.3? If so, when might we expect that new version?
    Thanks,
    Mike

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Of course. ETA unknown. I might have to make yet another point release (e.g. 6.3.13) since version 7 is far from ready.

    Would it make a difference if someone paid you to do it? I need this now.

    For new password features:

    such as profile-form.php replace this piece of code

    <?php
    		$show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
    		if ( $show_password_fields ) :
    		?>
    		<tr id="password" class="user-pass1-wrap">
    			<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
    			<td>
    				<input class="hidden" value=" " /><!-- #24364 workaround -->
    				<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password' ); ?></button>
    				<div class="wp-pwd hide-if-js">
    					<span class="password-input-wrapper">
    						<input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
    					</span>
    					<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
    						<span class="dashicons dashicons-hidden"></span>
    						<span class="text"><?php _e( 'Hide' ); ?></span>
    					</button>
    					<button type="button" class="button button-secondary wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
    						<span class="text"><?php _e( 'Cancel' ); ?></span>
    					</button>
    					<div style="display:none" id="pass-strength-result" aria-live="polite"></div>
    				</div>
    			</td>
    		</tr>
    		<?php endif; ?>

    and add css:

    #your-profile #pass1-text,
    #your-profile .pw-weak,
    #your-profile .show-password #pass1 {
    	display:none;
    }
    #your-profile .show-password #pass1-text {
    	display:inline-block;
    }
    #your-profile input.regular-text {
    	width:25em;
    }
    #your-profile .button.wp-hide-pw,
    #your-profile .button.wp-cancel-pw {
    	margin-left:10px;
    }
    Plugin Author Jeff Farthing

    (@jfarthing84)

    I’ve implemented most of the changes for 4.3 compatibility today. However, I’m not sure if I’m ready to release it yet. As it stands, the development version is stable. If you cannot wait for this update, you can download the development version (6.4-alpha) here.

    Jeff,

    Thanks for releasing the alpha version. I can confirm the reset password works. Noticed it adds a new page. From there I just added the [theme-my-login] shortcode.

    Thanks Jeff!

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Please see this.

    Oops missed the link for the beta (alpha worked for me)

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Support for new password features in 4.3?’ is closed to new replies.