PDA

View Full Version : Link to profile.


Slybone
10-19-2003, 09:37 PM
Notice how to the left of my post it has my name then rank... well I would like to have my Slybone link to my profile. many forums have this mod, including this one. I just need to find out how.

Regards,

Slybone

Rein Masamuri
10-22-2003, 05:48 AM
quite easy actually:
goto the postbit template and find

$post[username]
Replace it with:
<a href="member.php?u=$bbuserinfo[userid]">$post[username]</a>

assassingod
10-22-2003, 06:28 AM
quite easy actually:
goto the postbit template and find

$post[username]
Replace it with:
<a href="member.php?u=$bbuserinfo[userid]">$post[username]</a>
Just for the record, that will only work with vB3, for vB2 use:

<a href="member.php?s=$session[sessionhash]&amp;action=getinfo&amp;userid=$post[userid]>$post[username]</a>

Slybone
10-22-2003, 05:26 PM
Thanks for the help

Slybone
01-05-2004, 05:26 AM
To anyone else that needs this help the correct code is


<a href="member.php?s=$session[sessionhash]&amp;action=getinfo&amp;userid=$post[userid]">$post[username]</a>


Assassin you left out a " in there.