Quote:
Originally Posted by JoeBOBBillyTed
I am not sure how to do it, but what he is wanting is similar to a hack that phpbb has where if you put the following text in a thread.
/user
it would instead of displaying that, replace that with the persons username.
|
There is a hack that does that somewhere....I did have it running once, but I cannot remember what it is called.
--------------- Added [DATE]1234138325[/DATE] at [TIME]1234138325[/TIME] ---------------
Hmmm....this is how my site used to do it...
Create a plugin at global_complete with the following code:
Code:
$output = str_replace('[username]', $vbulletin->userinfo['username'], $output);
Now anywhere you type:
it will display the name of the person reading it.