Quote:
Originally Posted by daystorm
I am having the same problem.
Any Ideas or suggestions?
I want to put a link in my index page straight to their user profile and I keep getting that the user is not registered... Please help.
Thank you,
Ella
|
Stupid me finally figured it out! If you go to your navbar template, scroll down to where you find the following:
Code:
<!-- user cp tools menu -->
This is where the "Quick Links" pull down menu begins. Scroll down further and find
Code:
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
That's the link that will take you to your profile. So to add this as a regular menu item, simply add the following code where you want it to appear in your nav bar
Code:
<td class="vbmenu_control"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td>
Note that it starts <td class="vbmenu_
control">, not <td class="vbmenu_
option">Also, don't put the <tr> tags in there! You can also feel free to change the variable $vbphrase[my_profile] to whatever you want (such as just "My Profile").
Good luck!