• Resolved shawtky

    (@shawtky)


    It’s possible to have lost password link above password field next to “Password” label.

    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    
    function add_lostpassword_link_to_label() {
        if ( $pwd = tml_get_form_field( 'login', 'pwd' ) ) {
            $label = $pwd->get_label() . ' <a href="' . wp_lostpasssword_url() . '">Lost your password?</a>';
            $pwd->set_label( $label );
        }
    }
    add_action( 'init', 'add_lostpassword_link_to_label' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘forgot password next to password label’ is closed to new replies.