Hi,
To remove the certain tab from the profile add this to kleo-child/functions.php having the kleo child theme activated:
COPY CODE
// Remove forums menu item
function my_setup_nav() {
global $bp;
unset($bp->bp_nav['forums']);
}
add_action( 'bp_setup_nav', 'my_setup_nav', 1000 );
replace forums with the slug that you want to remove.
You can create a custom tab there by adding custom code to child theme, here’s the guide : https://archived.seventhqueen.com/forums/topic/create-new-xprofile-tab#post-183343
Or you can check if the events plugin have already integration to buddypress, ask the plug author.
Cheers
R
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution