• Resolved T9S

    (@hippow)


    Hello,

    First of all thanks for your help.

    The show password button is not working why ?

    It is not related but what is the CSS selector so I can change the placeholder color please ? I tried a lot of things but it nos working.

    Thanks !

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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/

    nettyloadstar

    (@nettyloadstar)

    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 !

    nettyloadstar

    (@nettyloadstar)

    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 ??

    Plugin Support sanjuacharya77

    (@sanjuacharya77)

    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!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Show password button is not working’ is closed to new replies.