BuddyPress Member tabs

For removing the Activity tab in the Members Profile area of BuddyPress, one might try this: [php] add_action( ‘bp_actions’, ‘remove_members_activity_tab’, 5 ); function remove_members_activity_tab() { global $bp; bp_core_remove_nav_item( ‘activity’ ); } [/php] But it’s likely you’ll get an error since the Activity tab is the default. To get around this, you can change the default […]