It's a custom theme I built (haha, probably explains it all right there) and the admin bar is displaying only as white.
My admin bar works if I turn it on to display in the admin panels, so it's functional, but on the actual website area, it's all white. Firebug reports it as a margin.
I did an absolute clean install. I wiped the DB and deleted everything except my theme files then downloaded the latest release from the site (3.1). The admin bar works in twentyten. I have no plugins installed.
Creative Slice
Member
Posted 1 year ago #
I had this issue too on a custom template. It turned out that the wp_head function was not being called correctly in the header. Once I fixed this the menu loaded perfectly.
Ghodmode
Member
Posted 1 year ago #
I'm also using a custom built theme. I had my own bar at the top.
The new admin bar blocks the one I created, but I was able to fix it by adding the following line to my functions.php.
// Disable the "Admin Bar", new to WordPress 3.1
add_filter( 'show_admin_bar', '__return_false' );
you can disable the admin bar by editing your user profile. Select users, your profile, uncheck show admin bar when viewing site. hit the update profile at the bottom.
Ghodmode
Member
Posted 1 year ago #
boywaja,
That's a per-user setting. I can make that change for myself, but not for the site.
head1ess
Member
Posted 1 year ago #
to stop admin bar just add this line to your themes php
show_admin_bar(false);
Personally I'm really annoyed that when adding this ugly bar wordpress did not think they would add a global turn off.
Sure you can add yet another plugin, but come on for this?
oh and you can turn it off per user? great how bout if you have 500 users?
why should we? I'm not impressed wordpress!