This topic has 3 replies, 2 voices, and was last updated 7 years by Radu.

  • Author
  • #199574
     faceliftSupport
    Participant

    We have a client that wants to remove some profile areas (activity etc) and add My Events – how can we do this in the Kleo Theme

    #199626
     Radu
    Moderator

    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
    #200237
     faceliftSupport
    Participant

    Thank you – all set!

    #200305
     Radu
    Moderator

    No problem
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 4 posts - 1 through 4 (of 4 total)

The forum ‘General questions’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?