Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    You can use .css to hide it. Install a free plugin called Simple Custom CSS and the go to Appearance -> Custom CSS -> And add the code below:

    p.login-remember{ display: none;}

    Let me know if this solution could work for you.

    Best regards,

    Thread Starter ac1643

    (@ac1643)

    Thanks, works fine.

    From a security point of view, is hiding it sufficient or would it be best to actually remove it?

    Hi,

    You can use some custom code to remove that checkbox. Follow the steps below:

    1. Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db

    2. Add the following code to the end of it:

    /*
     * Remove Remember Me checkbox from PB's Login Widget
     */
    
    add_filter('wppb_login_form_args', 'remove_remember_me_from_login_form');
    function remove_remember_me_from_login_form($args){
        $args['remember'] = false;
        return $args;
    }

    3. Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality

    Let me know if the code works for you.

    Best regards,

    Thread Starter ac1643

    (@ac1643)

    Great! I will try this and report back.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove 'Remember Me'’ is closed to new replies.