Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Remove BP component links from main WP menu


modemlooper
Moderator

@modemlooper

Easiest way is to remove all the li links from the header.php file except the home link and wp_list_pages( ‘title_li=&depth=1&exclude=’ . bp_dtheme_page_on_front() ); and then add a sidebar menu widget for any links you need. Next version of BP will use WP menus for the top nav so you won’t need to customize the html.

remove everything from between ul id=”nav”

replace with

<ul id="nav">
                <li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif?>>
                    <a href="<?php echo site_url() ?>" title="<?php _e( 'Home''buddypress' ) ?>"><?php _e( 'Home''buddypress' ) ?></a>
                </li>

                <?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?>

                <?php do_action( 'bp_nav_items' ); ?>
</ul><!-- #nav -->

Skip to toolbar