How to redirect Home link to Profile Page
-
Hi
I’m trying to change the Home page links in the themes header.php so that for Logged in users it links to the User’s Profile page (rather than the domain homepage).
I came up with this:
<?php if ( is_user_logged_in() ) : ?>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) {?> class=”selected”<?php } ?>>loggedin_user->domain
?>” title=”<?php _e( ‘Home’, ‘buddypress’ ) ?>”><?php _e( ‘Home’, ‘buddypress’ ) ?>
<?php else : ?>
Hoping $bp->loggedin_user->domain would do the job but it only works when we are on a users page.
Does anyone know the right code to use?
Thanks a lot!
- The topic ‘How to redirect Home link to Profile Page’ is closed to new replies.