Remove 'Activity' item and content from profile page
-
I am trying to remove the “Activity” tab and content from the profile page. If I use the CSS
li#activity-personal-li {display:none}
I can remove the tab but the activity content still shows when you first go to the profile page.I have tried using the following code after reading the forums and help guildes but this only removes the tab name and not the whole HTML for the tab or the content.
//remove activity tab from profile page function bbg_remove_activity_tab() { global $bp; $bp->bp_nav['activity'] = false; } add_action( 'bp_setup_nav', 'bbg_remove_activity_tab', 999 );
can someone please help?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove 'Activity' item and content from profile page’ is closed to new replies.