I've managed to get FEU/Customcontent working (very simply) with one user/group forcing them to log-in to see a certain area of our site.
I now want to add a new group with it's own users so they can view different content.
My current code (for the one user) is:
Code: Select all
{if $customcontent_loggedin}
CONTENT
{else}
You are not logged in.
Please login using the form on the left.{/if}
Code: Select all
{if $customcontent_loggedin AND MEMBER OF GROUP 1}
CONTENT A
{else}
{IF MEMBER OF GROUP 2}
CONTENT B
{else}
You are not logged in.
Please login using the form on the left.{/if}
Thanks