Forum Replies Created
-
Found my solution –
Activity Plus Reloaded for BuddyPress pluginThank you very much. This works!!
Found it…
In case amyone is looking here is the pathWp_content
Plugins
Buddypress-docs
Includes
Integration -groups -php
Line – 1245ONE MORE THING….
I placed this code in the Code Snippets plugin.
I love this plugin!!!After making the changes that I wanted
Change “activity tab” to “Social Wall”
Change “docs” to “Official Docs”
Hope this helps ….// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// http://themekraft.com/customize-profile-menus-in-buddypress/
function my_setup_nav() {
global $bp;// Change name of menu item
$bp->bp_nav[‘docs’][‘name’] = ‘Official Docs’;
// Change name of menu item
$bp->bp_nav[‘activity’][‘name’] = ‘Social Wall’;
}add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
i found this snippet and it works great …
// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
function my_setup_nav() {
global $bp;// Change the order of menu items
$bp->bp_nav[‘messages’][‘position’] = 100;// Remove a menu item
$bp->bp_nav[‘conversations’] = false;// Change name of menu item
$bp->bp_nav[‘communities’][‘name’] = ‘My Conversations’;
}add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
Thank you very much!!! You are the best.
Thank you great info.
Thanks very helpful
I found this snippet that will remove certain tabs but it also removes the tab from the drop-down menu too. How can I just hide tabs that I don’t want the users to see on the profile page nav bar? I still want them to be seen in the dropdown menu.
/**
* Removing the friends tab
*/
function mb_profile_menu_tabs(){global $bp;
bp_core_remove_nav_item(‘friends’);
}
add_action(‘bp_setup_nav’, ‘mb_profile_menu_tabs’, 201);
/*** Removing the friends tab
*/I found the Recorder Tabs plugin. This definitely helps with the order of tabs in the profile page but I still don’t know how to remove the unwanted tabs. I just want to remove them from this bar and not other menus.
This is the order of my nav bar
Media – Articles – Docs – Activity – Profile – Friends – Group – Forums
I want the Activity – Profile – Friends – Groups – Forums to disappear but still be in the drop-down menu.
Can anyone help me ???