MyBB Community Forums

Full Version: How to hide postbit stats for admins?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: tzz1GR5.png]

How do some forums do this? I want to be able to hide my administrators stats on the postbit
Means, you dont want admin wriitten on postbit?

If you want to hide admin status and color on postbit than
Go to ACP --> Users & Groups --> Click on your username --> Change Primary Usergroup to Registered and Secondary usergroup to Administrator.
So on postbit, you are registered usergroup but you have power of Admins.
template conditionals plugin can be used for such requirements. please look at the plugin release thread for the usage methods
By using if statements.
In postbit_classic you can do something like

<if ($post['uid']) == 1 then>
<else>
<div class="author_statistics">
    {$post['user_details']}
</div>
</if>