Yours Truly |
07-18-2007 10:00 PM |
Welcome text, links to your profile.
Time taken: 2 Minutes
Difficulty: Easy as pie
What it does: This will basically change your username at the top of the page in the navbar template to the html markup and a link to that persons profile.
You can also use this for Vb 3.5.x too
Go to:
Style Manager --> [Template you wanna edit] --> Navigation / Breadcrumb Templates --> navbar
Find:
PHP Code:
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
Replace with:
PHP Code:
<strong><phrase 1="$bbuserinfo[musername]"><a href="member.php?u=$bbuserinfo[userid]">$vbphrase[welcome_x]</a></phrase></strong><br />
---------------------------------------------------------------------------------------
Making it link to the usercp:
Style Manager --> [Template you wanna edit] --> Navigation / Breadcrumb Templates --> navbar
Replace:
PHP Code:
<strong><phrase 1="$bbuserinfo[musername]"><a href="member.php?u=$bbuserinfo[userid]">$vbphrase[welcome_x]</a></phrase></strong><br />
With:
PHP Code:
<strong><phrase 1="$bbuserinfo[musername]"><a href="usercp.php$session[sessionurl_q]">$vbphrase[welcome_x]</a></phrase></strong><br />
To come:
- Let the user choose what they want their name to link to
- Post some ideas :p
Versions:- 1.00
- 1.01
- Updated to use phrases instead of editing the templates
- Corrected usercp url
- 1.02
- Fixed again as using phrases doesn't parse the links correctly
|