I guess I should learn the difference between usertitle and unsername, huh?

My fault. Duhhh!!! (Sorry about that). But there is the user part that is the same. Does that count?
I have 2 additions for you, though. I have the usertitle in the memberlist and on the foumhome. So here is the code I added to those files.
In root/memberlist.php
Look for the following code:
Code:
$userinfo[datejoined]=vbdate($dateformat,$userinfo[joindate]);
And add the following AFTER it:
Code:
$userinfo[usertitle] = htmlspecialchars($userinfo[usertitle]);
$userinfo[usertitle]=bbcodeparse($userinfo[usertitle]);
In root/index.php
Look for the following code:
And add the following ABOVE it:
Code:
$bbuserinfo[usertitle] = htmlspecialchars($bbuserinfo[usertitle]);
$bbuserinfo[usertitle]=bbcodeparse($bbuserinfo[usertitle]);