If it’s not showing on all your blogs then check the setting of: wpmu back end > BuddyPress > General Settings > Hide admin bar for logged out users?
If some themes are still not showing the admin bar then that means they are not written to calll wp_footer() in the theme itself.
Hello,
I’ve tried to check that option “Hide admin bar for logged out users to (No) ” , where shoud I include wp_footer() in the themes ,
Every theme is written differently. Generally speaking it should be located in footer.php.
From the default Kubrick theme’s footer.php we have:
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
<?php /* "Just what do you think you're doing Dave?" */ ?>
<?php wp_footer(); ?>
</body>
</html>
What theme are you having problems with?
Hello,
Thank you for your reply, themes are (depo-clean and TerraFirma ), one more question does using WordPress admin bar will cause conflict ?
Thank you
Thank you, add wp_footer() did the trick.
You get to have one or the other basically. It doesn’t cause conflicts, they both can’t be occupying the same space.
I am using furry-family and the admin bar is not showing on my site.
Can you help?
Thanks
I got it
I needed to add <?php wp_footer(); ?>
to my footer !!