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,