Wordpress login toolbar

Hey Guys,

I am currently experiencing an issue with a wordpress log in toolbar being displayed at the top of the page even when I am logged out of the backend. I have tested the website on multiple browsers and it still shows up. How would I disable this toolbar?

I have attached an image for reference!

Thanks,
Blaine

Hi there,

Do you have BuddyPress installed on your site? If so, kindly check if the setting Show Admin bar for logged out users is disabled.

If you do not BuddyPress, please try adding this code in the functions.php file of the child theme:

add_filter( 'show_admin_bar', 'hide_admin_bar_from_visitor', 9999 );
function hide_admin_bar_from_visitor() {
    if( ! is_user_logged_in() ){
        return false;
    }
    return true;
}

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.