• Resolved jayjay1602

    (@jayjay1602)


    Hi,

    I really like the plugin, thanks a lot for your work. Is there a way to have the “Remember me” checkbox checked by default?

    Thanks

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

    (@jfarthing84)

    Put this in theme-my-login-custom.php or your theme’s functions.php file:

    
    add_action( 'init', function () {
        if ( $rememberme = tml_get_form_field( 'login', 'rememeberme' ) ) {
            $rememberme->add_attribute( 'checked', 'checked' );
        }
    } );
    
Viewing 1 replies (of 1 total)
  • The topic ‘“Remember me” checked by default’ is closed to new replies.