Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

Admin Bar Disapears (7 posts)

Started 1 year, 8 months ago by: Sixgunzx

  • Profile picture of Sixgunzx Sixgunzx said 1 year, 8 months ago:

    I know there are a lot of topics on this subject, however, after following each instruction found in them, I still have the issue. I changed my theme to Jooc Buddypress Theme, I use Wordpress 3.0.1 Buddypress 1.2.5.2 . When I installed the Jooc Theme, my admin bar disappeared, now I can’t get it back. I did do some looking around and found that it does seem to be working in the dashboard, just not on the main page. I find that it is called in the Themes Functions. My footer does have hook. Everything seems to look right, however it doesn’t work. Help ME PLEASE!

    Thank you in advance.

  • Profile picture of @mercime @mercime said 1 year, 8 months ago:

    “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.

  • Profile picture of Sixgunzx Sixgunzx said 1 year, 8 months ago:

    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.

  • Profile picture of govpatel govpatel said 1 year, 8 months ago:

    did you check in general settings Hide admin bar for logged out users?: it should No

  • Profile picture of Sixgunzx Sixgunzx said 1 year, 7 months ago:

    @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.

  • Profile picture of WRAWRWAWR WRAWRWAWR said 1 year, 5 months ago:

    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…

  • Profile picture of gcortex gcortex said 1 year ago:

    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 ?