Can I restrict content to certain Member Groups?
Yes, you can do this. Generally, the best way is to use the native EE global conditionals:
{if member_group == 1}
Only SuperAdmins can see this!
{/if}
or
{if group_id == 1}
Only SuperAdmins can see this!
{/if}
If you need to check against more than one group at the same time you can use advanced conditionals. Something like:
{if group_id == 1 OR group_id == 2}
Only group ids 1 and 2 can see this!
{/if}
Of course, if you simply wish to restrict an entire Template, then you can easily do that by following the “Access” link for the Template you’re interested in under Templates in the Control Panel.
