Hi Lynne,
First of all thanks for all the help and the great article. Is there a way to create a new tab that links to the user's profile? For example the tab would be called "My Profile" and when the user clicks on it, it would take him to his profile as seen in member.php. On my forum, my user ID is "1", so the link would be
www.myforum.com/member.php?1. But how do I do that through the plugin code? That is, how do I write a condition that only lets that tab show if the user is logged in, and to customize the link to be different for each user?
I know that the vb command
Code:
{vb:link member, {vb:raw bbuserinfo}}
generates the user-ID and username, and adding the output of that after member.php? takes me to the profile. But I tried doing something like this:
Code:
<a href="member.php?{vb:link member, {vb:raw bbuserinfo}}">
yet it didn't work.
Thanks!