Skip to:
Content
Pages
Categories
Search
Top
Bottom

BuddyPress theme with WP 3.0 menu


  • Shawn
    Member

    @shawndibble

    I would like to implement the new menu creation into the BuddyPress theme. Same styling and all, just make it easier for me to add in new links. Is there an easy way to do this?

Viewing 3 replies - 1 through 3 (of 3 total)

  • LPH2005
    Participant

    @lph2005

    Others may have better suggestions but I tend to create a child-theme and edit header.php so that the navigation is as desired ..

    Maybe this document is helpful:

    https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/


    @mercime
    Keymaster

    @mercime

    As @LPH2005 mentioned above, create a child theme if you haven’t had already. Note that you must be using WP 3.0 to make the following work:

    1. open up functions.php file and add
    add_theme_support( ‘menus’ );

    2. open up header.php, and add
    http://wordpress.pastebin.com/XbrWdhWp
    replacing BP navigation items (if you’re on BP 1.3 trunk where BP components are rendered as Pages) or after the BP navigation items (pre BP 1.3 where there is still distinction between regular Pages and BP components)


    John Monkhouse
    Participant

    @westmonker

    I did that but I still cannot go to and add menus.

    What I did;

    1.open up functions.php file and add
    add_theme_support( ‘menus’ );

    2. replaced
    “ul id=”nav”
    With

    ?php wp_nav_menu( array( ‘sort_column’ => ‘menu_order’, ‘container_class’ => ‘menu-header’ ) ); ?

    and I still can not add menus.
    where did I go wrong?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘BuddyPress theme with WP 3.0 menu’ is closed to new replies.
Skip to toolbar