PHP Code:
global $vbulletin;
$vbulletin->templatecache['postbit'] = str_replace('$post[usertitle]','$post[usertitle]<br />$post[field10]',$vbulletin->templatecache['postbit']);
I tried to use the code above using the [high]
postbit_display_complete[/high] hook to make a user's custom title (profilefield field10) show below their standard user title...
The problem is that although it works, post one has:
usertitle
custom title
However, post two, three, four etc have:
usertitle
custom title
custom title
custom title
... etc ... etc ...
Any way around this so I can get it to display only once per post?
Satan