This topic has 1 reply, 2 voices, and was last updated 9 years by sharmstr.

  • Author
  • #70506
     Posterboi
    Participant

    I’m attempting to manipulate my user profile pages of my site and I can’t seem to find the php or page that I need to change to get the arrangement the why I want.

    Attachments:
    You must be logged in to view attached files.
    #70536
     sharmstr
    Moderator

    To move the media tab
    http://docs.rtcamp.com/rtmedia/developers/reordering-media-tab-buddypress.html

    To rearrange other tabs

    COPY CODE
    
    function my_change_profile_tab_order() {
        global $bp;
        $bp->bp_nav['settings']['position'] = 10;
        $bp->bp_nav['activity']['position'] = 20;
        $bp->bp_nav['friends']['position'] = 30;
        $bp->bp_nav['groups']['position'] = 40;
        $bp->bp_nav['blogs']['position'] = 50;
        $bp->bp_nav['messages']['position'] = 60;
        $bp->bp_nav['profile']['position'] = 70;
    }
    add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 2 posts - 1 through 2 (of 2 total)

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

Log in with your credentials

Forgot your details?