Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Barry Ceelen

    (@barryceelen)

    Hi virtualgeorge,

    Currently the plugin does not support something like this.
    A future version might add the option of showing a checkbox in stead of the icon.

    A help text beneath the login form, like you described, is possible via the ‘login_form’ filter. Adding something like this to your theme’s functions.php might do the trick:

    function prefix_show_login_form_help_text() {
    	printf( '<p><label>%s</label></p><br />', __( 'Click icon to show password.', 'example-text-domain' ) );
    }
    
    add_action( 'login_form', 'prefix_show_login_form_help_text' );
    Plugin Author Barry Ceelen

    (@barryceelen)

    I’ve updated the plugin with the option of showing a checkbox below the form in stead of the icon inside the password field. This might be helpful if the function of the icon is not obvious enough to the user.

    Thread Starter virtualgeorge

    (@virtualgeorge)

    I would think the icon would be good enough but some of my clients still have issues ??

    Thanks Barry for responding to my request!!
    -George

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add text next to "Password" label’ is closed to new replies.