• Resolved mezianedavincipotes

    (@mezianedavincipotes)


    Hello,

    Into the Profilepress plugin, seems me that the field “Remember me” into the login form is checked by default.

    How to change this behavior and have unchecked by default?

    Best regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Ibrahim Nasir

    (@ibrahimkh4l33l)

    Hello @mezianedavincipotes

    Thank you for bringing this to our attention, we will make this editable in the form builder in our future update.

    In the meantime please add the snippet below to your active theme’s function.php file or via a code snippets plugin to make the checkbox unchecked by default.

    // Modify Remember Me checkbox "checked" status 
    function pp_remove_checkbox_checked_status($html, $atts) {
        $html = str_ireplace("checked='checked'", '', $html);
        return $html;
    }
    
    add_filter('ppress_login_remember_field', 'remove_checkbox_checked_attr', 10, 3);
    

    Regards

    Thread Starter mezianedavincipotes

    (@mezianedavincipotes)

    Hello,

    Thanks a lot for the function.

    It had a little error with the name thus I modifed it as follow:

    // Modify Remember Me checkbox “checked” status
    function pp_remove_checkbox_checked_status($html, $atts) {
    $html = str_ireplace(“checked=’checked'”, ”, $html);
    return $html;
    }

    add_filter(‘ppress_login_remember_field’, ‘pp_remove_checkbox_checked_status‘, 10, 3);

    Best regards

    Plugin Support Ibrahim Nasir

    (@ibrahimkh4l33l)

    Sorry about that, I made the change last minute and forgot to change that.

    Have a nice day @mezianedavincipotes

    Regards

    Plugin Author Collins Agbonghama

    (@collizo4sky)

    Heads up, starting the next plugin version, the remember me checkbox would be unchecked by default.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to uncheck “Remember me” in the login’ is closed to new replies.