@colorfullady
Active 9 years, 11 months ago
-
bp-help replied to the topic How does a member find their profile page? in the forum How-to & Troubleshooting 9 years, 11 months ago
@colorfullady
For Profile:
if ( is_user_logged_in() ) {
<a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>//link to users profile
}
For Members directory:
if ( is_user_logged_in() ) {
<a href="<?php echo home_url() . '/members/'; ?>">Members</a>//link to Member Directory
}
You will need to find where in your template files you…[Read more]