Vbulletin by default has the usergroup > html markup feature. However, I'd like one specifically for user TITLE html markup as well. Couldn't find any here, either in modification graveyard or not quite that feature but close.
I tried to figure it out on my own, but not a coder by trade.
For one, I want this applied in postbit_legacy at least. So I went to that template.
I see this:
Quote:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
|
Now, on my home page shoutbox you cannot use it unless you're a registered member. So I have this if rule applied to the text box area of the shoutbox:
Quote:
<if condition="in_array($bbuserinfo['usergroupid'], array(2,6,7,35))">
|
I'm trying to figure out a way to apply the same thing specifically for the admin and moderator usergroup, to the user title. Any help on this appreciated.