MyBB Community Forums

Full Version: Group Display on post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey all , anyone know how to put red administrator image above avatar instead of administrator text ? (check img)
[Image: DI1oRO7.png]
In postbit template find:

<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>

And change it to:

<span class="smalltext">
{$post['groupimage']}<br />
{$post['userstars']}
{$post['usertitle']}
</span>

Or arrange it the way you want Smile
Thanks ! It works !