-
Varun Dubey replied to the topic Showing all Groups on a page in the forum Installing BuddyPress 4 years, 5 months ago
@clancel groups pages already do the same eg https://demo.buddyxtheme.com/groups/
-
Varun Dubey replied to the topic How can I hide 'Mentions', 'Favorite' tabs under the Activity in the forum How-to & Troubleshooting 4 years, 5 months ago
@clancel you can try following to remove sub tabs
function bp_remove_sub_tabs() {
if ( ! bp_is_user() ) {
return;
}
bp_core_remove_subnav_item( 'activity', 'mentions' );
bp_core_remove_subnav_item( 'activity', 'favorites' );
}
add_action( 'bp_actions', 'bp_remove_sub_tabs'…
@clancel
Active 2 years ago