I just upgraded my WP Installation to 3.1 and so far I still havent been able to see the admin bar... Its in the theme because when I change it to the Twenty Ten theme it displays nicely..
Since most of the people having the same problem used the wp_footer() which is what solved the problems in my other blogs, but I still have 1 blog left which can't be solved by the wp_footer()
Any chance that there is still something missing in the theme that I need to put in? Probably something in the header perhaps? or somewhere?
Thanks guys!
but I still have 1 blog left which can't be solved by the wp_footer()
Why? Can you detail the problem? does the header contain a call to wp_head()?
yep, it has the wp_head(). I am currently using the this theme called Capella theme with only editing the footer because it did not contain the wp_footer() hook.
I everything is working fine except that the admin bar is not visible. Not even a blank admin bar. It seems as if it does not exist.
What I already did:
- Upgraded to WP 3.1 (of course)
- put in the
<?php do_action('wp_footer'); ?> before the /body
- change the theme to Twenty Ten to cross match if it was really because of the theme
- Checked if I have the wp_header() hook. (and it has one on the header.php
any other suggestions?
Is the the default 3.1 Admin Bar or a plugin?
Why <?php do_action('wp_footer'); ?> instead of <?php wp_footer(); ?>?
Try the <?php wp_footer(); ?> code instead.
EDIT - ok, Ipstenu said it above :-)
@esmi,
Im talking about the default 3.1 Admin Bar, I think I have got this thread on a wrong section. but I added tags for this thread just in case..
@Ipstenu,
I also tried to use the <?php wp_footer(); ?> to no avail. I just used the <?php do_action('wp_footer'); ?> since most of my blogs use that on the footer area and the rest use the <?php wp_footer(); ?> but still nothing happens...
Any other suggestions guys?
Leave a comment at the theme site and ask them if they know about this and have a fix.
That said, IANAL but the FAQ for the theme makes me think they're a little GPL-broken. Saying you CAN'T remove the footer links on a free theme isn't cool, and more to your problem, whatever they've done THERE to force the footers may be causing the issue.