Quote:
Originally Posted by bogene2020
I still am not able to figure out how to link to friends.php
I looked at member.php
HTML Code:
'member.php?' . $vbulletin->session->vars['sessionurl'] . "u=$userinfo[userid]" => $vbphrase['view_profile'],
'' => $userinfo['username']
Well how is everybody using this script .
|
Ok, a little more for you: If you want a link to your friends.php page in the useful links section in the navbar, go to the
navbar template, find
HTML Code:
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
below add
HTML Code:
<tr><td class="vbmenu_option"><a class="smallfont" href="friends.php?$session[sessionurl]u=$bbuserinfo[userid]">Friends</a></td></tr>
hope this finally helps you