This topic has 1 reply, 1 voice, and was last updated 9 years by jazzbuzz.

  • Author
  • #91662
     jazzbuzz
    Participant

    Hi there,

     

    I would like to exchange activity stream with profile page. So when I click on my profile or on user name that instead of activity stream it goes directly to profile page itself.

     

    Additionally I would like to put the activity tab as last tab (after settings). How can I do this?

     

    Thank you so much in advance 🙂

     

    Jasmin

     

     

    #91689
     jazzbuzz
    Participant

    I did the trick:

    Add this to function.php:

    function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav[‘profile’][‘position’] = 10;
    $bp->bp_nav[‘activity’][‘position’] = 60;
    $bp->bp_nav[‘friends’][‘position’] = 40;
    $bp->bp_nav[‘notifications’][‘position’] = 20;
    $bp->bp_nav[‘settings’][‘position’] = 50;
    $bp->bp_nav[‘messages’][‘position’] = 30;
    }
    add_action(‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );

    And put this to bp-custom.php (if not existing, add a new file to wp-content/plugins/

    <?php
    /* define the default Profile component */
    define(“BP_DEFAULT_COMPONENT”,”profile”);// Now when you click on a user name link, You will land on User’s profile not user’s activity page
    ?>

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?