Thread Starter
T9S
(@hippow)
Hello,
Thanks for your quick answer.
What do you mean by my domain ? Because I already linked this page : https://the97shop.com/connexion/
I have the same issue, I just put an jquery function in my footer to do the trick.
Thread Starter
T9S
(@hippow)
Hello @nettyloadstar ,
Could you please tell me :
– which jquery did you add ?
– how to set it in my footer ?
Thanks a lot !
If you are not familiar with writing in templates, maybe let someone else do it for you.
I have put I right before the last php tags in the footer.php ( before the wp_footer() call ).
<script>
jQuery( document ).ready(function() {
// remove not functioning click fir both fields
jQuery(“#user_pass_field .password_preview”).attr(“href”, “”);
jQuery(“#user_confirm_password_field .password_preview”).attr(“href”, “”);
// attach new click
jQuery(“#user_pass_field .password_preview”).click( function(){
setPW(1)
});
jQuery(“#user_confirm_password_field .password_preview”).click( function(){
setPW(2)
});
function setPW($arg){
if($arg==1){
jQuery(‘#user_pass_field .password_preview’).toggleClass(‘dashicons-visibility’);
jQuery(‘#user_pass_field .password_preview’).toggleClass(‘dashicons-hidden’);
if(jQuery(‘#user_pass_field .password_preview’).hasClass(‘dashicons-visibility’)){
jQuery(“#user_pass”).prop(‘type’,’text’);
}else{
jQuery(“#user_pass”).prop(‘type’,’password’);
}
}else{
jQuery(‘#user_confirm_password_field .password_preview’).toggleClass(‘dashicons-visibility’);
jQuery(‘#user_confirm_password_field .password_preview’).toggleClass(‘dashicons-hidden’);
if(jQuery(‘#user_confirm_password_field .password_preview’).hasClass(‘dashicons-visibility’)){
jQuery(“#user_confirm_password”).prop(‘type’,’text’);
}else{
jQuery(“#user_confirm_password”).prop(‘type’,’password’);
}
}
}
});
</script>
Thread Starter
T9S
(@hippow)
Thanks @nettyloadstar !
Indeed, so I’ll wait for someone from the plugin to reply then.
Thanks again 🙂
Hi @hippow and @nettyloadstar,
We are really sorry for the inconvenience caused. The issue with the show password button has been fixed. The patch version has been released. Please stay updated with the new version and it will fix the issue.
Let me know whether it fixes the issue or not and I will get back to you.
Thanks and Regards!