Re: Where are the user’s links
Best way is to do it like this (for the logged in user):
----
echo $bp['loggedin_domain'] . $bp['profile']['slug'];
echo $bp['loggedin_domain'] . $bp['messages']['slug'];
echo $bp['loggedin_domain'] . $bp['friends']['slug'];
echo $bp['loggedin_domain'] . $bp['groups']['slug'];
echo $bp['loggedin_domain'] . $bp['wire']['slug'];
echo $bp['loggedin_domain'] . $bp['activity']['slug'];
----
If you put that code inside a function, make sure you global $bp;
at the top.