Skip to:
Content
Pages
Categories
Search
Top
Bottom

Make wp Admin bar visible

  • @sessions4lauragmailcom

    Participant

    Hi, I would like to make the entire Buddypress Admin bar visible. Currently it’s under the username at the top right under the WP admin bar. How can I make it visible so that the log in/sign up links as well as the other BP links (Activity, Profile, Notifications, etc) show up all the time on all pages including the home page.
    Thanks, Laura Powell

Viewing 4 replies - 1 through 4 (of 4 total)
  • @modemlooper

    Moderator

    Your theme doesn’t have a menu?

    @r-a-y

    Keymaster

    What modemlooper meant to say was, try adding a custom menu under “Appearance > Menus” in the WP admin dashboard.

    Follow the steps in step 2 of this codex article:
    https://codex.buddypress.org/getting-started/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/#step-2-create-your-main-navigation-menu

    @sessions4lauragmailcom

    Participant

    I understand. I actually did that but when I look at the site from a computer that I am signed into meaning if they are a member of the site signed in, there is a vertical admin bar with all of the buddypress links on it. I wanted to make that visible.

    @danbp

    Participant

    Hi,

    it’s not possible without heavy code modification. The usermenu is intended to be on the toolbar.

    But you can give this a try. All items will be visible on the toolbar, instead under the howdy.

    function laura() {
    global $bp, $wp_admin_bar;
    remove_action( 'bp_setup_admin_bar', 'bp_members_admin_bar_my_account_menu',4);
    }
    add_action( 'bp_setup_nav', 'laura', 4 );

    Reference: /bp-members/bp-members-adminbar.php:74
    WP Codex wp_admin_bar

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Make wp Admin bar visible’ is closed to new replies.
Skip to toolbar