Admin bar not showing

Hello guys,

After updating I am not able to see my admin bar anymore on the top of my website.
I cannot select the option ’ Show Toolbar when viewing site’ anymore. If I select it and then save it the checkbox just turns blank again.

I’ve looked for plugin conflicts, clear cache remove custom code and tried to do all the troubleshooting recommended but nothing seems to help. Any idea?

Kind regards.

Hi There,

Thanks for writing in!

As you have done everything to find the cause of the issue, to help you on this please send us your website details so that we can have a look.

Please provide following information:
Set it as Secure Note

  • Link to your site
  • WordPress Admin username / password
  • FTP credentials
    All the best!

Hello thank you for your response

Please find below my details

thank you in advance.

Hi,

I can see that you have this plugin Hide Admin Bar From Non-admins

It might have some cache data that is causing the issue.

Try to set up a child theme and add the code below in your child theme’s functions.php file

function remove_admin_bar()
{
    return true;
}
add_filter('show_admin_bar', 'remove_admin_bar'); 

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