How to Create a New Tab on Member Page
-
I have done a lot of searching and have tried all sorts of things to no avail.
I would like to add a nav item/tab to the member profile page that displays the All Groups loop (example: http://buddypress.org/community/groups/). I can get the tab to appear, but it redirects back to the home page. My code is below. Can anyone help?
bp_core_new_nav_item( array( 'name' => __('All Conversations Button', 'buddypress'), 'slug' => 'all-conversations', 'position' => 75, 'show_for_displayed_user' => true, 'screen_function' => 'all_conversations_link', 'default_subnav_slug' => 'testing', 'item_css_id' => 'all-conversations' )); function all_conversations_link () { echo 'my loop will go here'; } add_action( 'bp_setup_nav', 'bp_core_new_nav_item' );
Thanks!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to Create a New Tab on Member Page’ is closed to new replies.