XF 2.3 Usergroups on board

Is there a way off adding the usergroup coours on the forum board without using an addon?

I assume that you meant the color? Provided you have styled the group then all members of that group will appeared colored up on the online list. Or did you mean something else entirely?
 
The whole board ie posts etc.

Well, they do appear in posts, but for the rest you will need some sort of a custom app or make some manual edits to the relevant templates because it's not possible to do this with the in house options of the software.
 
Last edited:
Just a few template edits.

node_list_forum
Rich (BB code):
<li class="node-extra-user"><xf:username user="{$extras.LastPostUser}" defaultname="{$extras.last_post_username}" rich="true" /></li>

poll_voters
Rich (BB code):
<li><xf:username user="$vote.User" rich="true" /></li>

thread_list_macros
Rich (BB code):
<li><xf:username user="$thread.User" defaultname="{$thread.username}" rich="true" /></li>

thread_list_macros
Rich (BB code):
<xf:username user="{$thread.LastPoster}" defaultname="{$thread.last_post_username}" rich="true" />
 
Just a few template edits.

node_list_forum
Rich (BB code):
<li class="node-extra-user"><xf:username user="{$extras.LastPostUser}" defaultname="{$extras.last_post_username}" rich="true" /></li>

poll_voters
Rich (BB code):
<li><xf:username user="$vote.User" rich="true" /></li>

thread_list_macros
Rich (BB code):
<li><xf:username user="$thread.User" defaultname="{$thread.username}" rich="true" /></li>

thread_list_macros
Rich (BB code):
<xf:username user="{$thread.LastPoster}" defaultname="{$thread.last_post_username}" rich="true" />
Thanks Paul
 
Back
Top Bottom