Thank you for your help, unfortunately, I am still getting this error message.
This user has not registered and therefore does not have a profile to view.
Any suggestions?
Thank you,
Ella
Quote:
Originally Posted by Dr Steevil
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!
|