2015-06-13, 08:23 PM
Is it possible to block certain usergroups from displaying a template of a theme?
I have to hide postbit_groupimage and member_profile_groupimage templates in my default theme so that guests and registered users wouldn't be able to see them (groups 1 and 2).
I've explained it all in another thread http://community.mybb.com/thread-171855.html
I solved it myself with Theme Conditionals:
I have to hide postbit_groupimage and member_profile_groupimage templates in my default theme so that guests and registered users wouldn't be able to see them (groups 1 and 2).
I've explained it all in another thread http://community.mybb.com/thread-171855.html
I solved it myself with Theme Conditionals:
<if !in_array($mybb->user['usergroup'], array(1,2)) then>
{$post['groupimage']}
</if>