MyBB Community Forums

Full Version: Can you make a template made for certain groups?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wonder if you can make a template for example, I would like to have an "Upgrade" button in my header which is only visible for members/moderators but if you actually upgraded, you can be moved to a group for example "Subscribers". After upgrading and moving to group, you won't see that "Upgrade" button.

Can I add the button in the templates such as
header_welcomeblock_member (Seen by those who registered)
header_welcomeblock_moderator (Seen by moderators or above)

Can I make my own template such as
header_welcomeblock_subscriber (Seen by subscribers)

and hide that button?
in general, we use template conditionals plugin for such requirements

<if $mybb->usergroup['gid'] == X then>
content visible to group X
</if>

however, if you want to include such system in your theme then wait for experts guidance