If your site is still showing you as logged out after your login, please try the following steps:
Add nocache headers
Add the below code snippet. We recommend the code snippet plugin:
// Do not cache pages for logged in users
add_action('template_redirect', function() {
if (is_user_logged_in()) {
nocache_headers();
}
});