How to remove this Log in bar?

Posted in: Newspaper
Post count: 13

I am not sure how to remove this Log In bar. I have even installed the “WPS Hide Login” plugin. Any ideas? See screenshot: https://ibb.co/8MtkBtn

P.S: In the theme panel, I also disabled the Login option

Post count: 13

I also added this code to the theme’s functions.php but nothing…Please Help.

function custom_disable_admin_bar( $show_admin_bar ) {
if ( ! current_user_can( ‘manage_options’ ) ) {
$show_admin_bar = false;
}

return $show_admin_bar;
}
add_filter( ‘show_admin_bar’, ‘custom_disable_admin_bar’, 10, 1 );

Post count: 13

You may ignore this. It has taken me a while to fix this issue, but it has been fixed now.

Post count: 27744

Hello,

I’m glad you found a solution for what you want to achieve.

Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.