MENU NAVIGATION

Is there a way t make the home page and the logo link to the persons profile?

  • Richie_KS
    • HummingBird

    this one a bit tricky…let’s see

    @make ‘HOME’ button link to logged in user profile

    open navigation.php and add this code to top of file

    <?php global $bp; ?>

    and find line 71+

    < a href=”<?php echo get_option(‘home’:wink: ?>” title=”<?php _e( ‘Home’, ‘bp-social’ ) ?>”><?php _e( ‘Home’, ‘bp-social’ ) ?>< /a >

    change the bold text to:

    <?php echo $bp->loggedin_user->domain; ?>

    @I also want to make the “LOGO” link to the users profile.

    open topbar.php line 37+

    < a href=”<?php echo get_settings(‘home’:wink:; ?>” title=”<?php _e(‘Click here to go to the site homepage’,’bp-social’:wink:; ?>”>

    change the bold text to:

    <?php echo $bp->loggedin_user->domain; ?>

    that should do it:slight_smile: