Type the new Password and Re-type the new password
-
Hello,
I can not reset the passwords with TML. It doesn’t say any error but the description is like this:
1. I type the new password;
2. When I try to re-type it in the special box, the box above with the new password is deleted and it remains saved only the last char from the New Password box.What can I do? Please advice.
Thank you in advance,
AThe page I need help with: [log in to see the link]
-
You should not even see the second box. Are you, or is your theme, using custom TML templates?
I am not sure if I answer your question. I am using [theme-my-login] into a page.
The setting “theme-my-login.css” is not activated.Try activating “theme-my-login.css”.
I activated it and it’s happening the same: I receive the email to reset the password, I write the new password in the “New Password” box and at the “re-type the new password” box it is deleted the password written in the “New PAssword” box.
Please, please help me!Again, the second password box should not even be shown. Can you use your browser’s web console to see if there are any javascript errors?
yes, I did. It looks like this:
[DOM] Found 2 elements with non-unique id #appendedInputButton: (More info: https://goo.gl/9p2vKq) <input class=?”span3″ id=?”appendedInputButton” type=?”text” placeholder=?”C?utare” name=?”s”>? <input class=?”span3 myemailval” id=?”appendedInputButton” type=?”text” placeholder=?”adresa e-mail” name=?”search”>?
login?action=profile:1 This page includes a password or credit card input in a non-secure context. A warning has been added to the URL bar. For more information, see https://goo.gl/zmWq3m.Good morning,
can you, please, advise regarding this issue? It is important for us because we have more than 1000 users and some of them, are forgeting their passwords so often ?? ?? ??You didn’t answer this question:
You should not even see the second box. Are you, or is your theme, using custom TML templates?
Check if your theme has a
lostpassword-form.php
file in it.Hello Jeff,
I apologize I did not see your question.Yes, I found it in two places:
/stage.bookfest.ro/lib/themes/bookfest/lostpassword-form.php
/stage.bookfest.ro/lib/plugins/theme-my-login/templates/lostpassword-form.phpMake sure that the one in your themes directory closely resembles the one in TML’s directory.
They look the same, identical.
`It looks like this:
<?php
/*
If you would like to edit this file, copy it to your current theme’s directory and edit it there.
Theme My Login will always look in your theme’s directory first, before using this default template.
*/
?>
<div class=”login” id=”theme-my-login<?php $template->the_instance(); ?>”>
<?php $template->the_action_template_message( ‘lostpassword’ ); ?>
<?php $template->the_errors(); ?>
<form name=”lostpasswordform” id=”lostpasswordform<?php $template->the_instance(); ?>” action=”<?php $template->the_action_url( ‘lostpassword’ ); ?>” method=”post”>
<p>
<label for=”user_login<?php $template->the_instance(); ?>”><?php _e( ‘Username or E-mail:’, ‘theme-my-login’ ) ?></label>
<input type=”text” name=”user_login” id=”user_login<?php $template->the_instance(); ?>” class=”input” value=”<?php $template->the_posted_value( ‘user_login’ ); ?>” size=”20″ />
</p>
<?php
do_action( ‘lostpassword_form’ ); // WordPress hook
do_action_ref_array( ‘tml_lostpassword_form’, array( &$template ) ); // TML hook
?>
<p class=”submit”>
<input type=”submit” name=”wp-submit” id=”wp-submit<?php $template->the_instance(); ?>” value=”<?php _e( ‘Get New Password’, ‘theme-my-login’ ); ?>” />
<input type=”hidden” name=”redirect_to” value=”<?php $template->the_redirect_url( ‘lostpassword’ ); ?>” />
<input type=”hidden” name=”instance” value=”<?php $template->the_instance(); ?>” />
</p>
</form>
<?php $template->the_action_links( array( ‘lostpassword’ => false ) ); ?>
</div>-
This reply was modified 7 years ago by
amarena.
And the second one is:
<?php
/*
If you would like to edit this file, copy it to your current theme’s directory and edit it there.
Theme My Login will always look in your theme’s directory first, before using this default template.
*/
?>
<div class=”login” id=”theme-my-login<?php $template->the_instance(); ?>”>
<?php $template->the_action_template_message( ‘lostpassword’ ); ?>
<?php $template->the_errors(); ?>
<form name=”lostpasswordform” id=”lostpasswordform<?php $template->the_instance(); ?>” action=”<?php $template->the_action_url( ‘lostpassword’ ); ?>” method=”post”>
<p>
<label for=”user_login<?php $template->the_instance(); ?>”><?php _e( ‘Username or E-mail:’, ‘theme-my-login’ ) ?></label>
<input type=”text” name=”user_login” id=”user_login<?php $template->the_instance(); ?>” class=”input” value=”<?php $template->the_posted_value( ‘user_login’ ); ?>” size=”20″ />
</p>
<?php
do_action( ‘lostpassword_form’ ); // WordPress hook
do_action_ref_array( ‘tml_lostpassword_form’, array( &$template ) ); // TML hook
?>
<p class=”submit”>
<input type=”submit” name=”wp-submit” id=”wp-submit<?php $template->the_instance(); ?>” value=”<?php _e( ‘Get New Password’, ‘theme-my-login’ ); ?>” />
<input type=”hidden” name=”redirect_to” value=”<?php $template->the_redirect_url( ‘lostpassword’ ); ?>” />
<input type=”hidden” name=”instance” value=”<?php $template->the_instance(); ?>” />
</p>
</form>
<?php $template->the_action_links( array( ‘lostpassword’ => false ) ); ?>
</div>If you can still edit your post, please wrap code using the
code
button above the editor.<?php /* If you would like to edit this file, copy it to your current theme's directory and edit it there. Theme My Login will always look in your theme's directory first, before using this default template. */ ?> <div class="login" id="theme-my-login<?php $template->the_instance(); ?>"> <?php $template->the_action_template_message( 'lostpassword' ); ?> <?php $template->the_errors(); ?> <form name="lostpasswordform" id="lostpasswordform<?php $template->the_instance(); ?>" action="<?php $template->the_action_url( 'lostpassword' ); ?>" method="post"> <p> <label for="user_login<?php $template->the_instance(); ?>"><?php _e( 'Username or E-mail:', 'theme-my-login' ) ?></label> <input type="text" name="user_login" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_login' ); ?>" size="20" /> </p> <?php do_action( 'lostpassword_form' ); // WordPress hook do_action_ref_array( 'tml_lostpassword_form', array( &$template ) ); // TML hook ?> <p class="submit"> <input type="submit" name="wp-submit" id="wp-submit<?php $template->the_instance(); ?>" value="<?php _e( 'Get New Password', 'theme-my-login' ); ?>" /> <input type="hidden" name="redirect_to" value="<?php $template->the_redirect_url( 'lostpassword' ); ?>" /> <input type="hidden" name="instance" value="<?php $template->the_instance(); ?>" /> </p> </form> <?php $template->the_action_links( array( 'lostpassword' => false ) ); ?> </div>
-
This reply was modified 7 years ago by
- The topic ‘Type the new Password and Re-type the new password’ is closed to new replies.