“I still have the issue. I changed my theme to Jooc Buddypress Theme”
If you change theme to bp-default theme, is admin bar showing up in front end? If so and it’s not showing up in the Jooc theme, and you say wp_footer hook is in footer.php of theme, then I suggest you contact Jooc theme authors.
ty, I have contacted the designer, hopefully we can get this resolved soon. I will come back and post the fix if there is one.
did you check in general settings Hide admin bar for logged out users?: it should No
@govpatel Yes that was the first thing I checked. It seems that anything using Jquery 1.3.2.min.js is being blocked for some reason. I would assume that is what is blocking admin bar.
I’m having the same issue with the Jooc theme. Admin bar is loading fine in the default theme, but as soon as Jooc is activated it disappears.
I’m a coding noob and tried deleting this code from functions.php in the jooc theme folder to no avail.
`function arit_remove_buddypress_admin_bar_install() {}
function arit_remove_buddypress_admin_bar_init() {
if ( function_exists(‘bp_core_admin_bar’) ) remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );
if ( function_exists(‘bp_core_admin_bar_css’) ) {
remove_action( ‘wp_head’, ‘bp_core_admin_bar_css’, 1 ); }
if ( function_exists(‘bp_core_add_admin_css’) ) remove_action( ‘admin_menu’, ‘bp_core_add_admin_css’ ); }
function arit_remove_buddypress_admin_bar_uninstall() {}
register_activation_hook( __FILE__, ‘arit_remove_buddypress_admin_bar_install’ );
add_action( ‘init’, ‘arit_remove_buddypress_admin_bar_init’ );
register_deactivation_hook( __FILE__, ‘arit_remove_buddypress_admin_bar_uninstall’ );`
Also tried deleting this from style.css:
`padding-top: 0 !important; /* Remove the top padding space for the admin bar in this theme */`
That also did not work. I would like to move the admin bar to the bottom instead of eliminating this. Any word from the designer or any thoughts? Thanks…
When i edited my footer.php in fishbook theme, the same occurs. Do you know how to add and edit the footer witout loosing the admin bars ?