Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Admin Bar Disapears


WRAWRWAWR
Participant

@wrawr

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…

Skip to toolbar