[SOLVED] Custom Content / Frontend Users
Posted: Wed Apr 15, 2009 12:43 pm
I have Custom Content and FEU users set up and working. When a user logs in they are redirected to their own page; I set this up in the redirection settings by using "{$username}". But, I am trying to set it so that each member of a specific group can only access their own page and nobody elses, regardless of whether they are in the same group or not. Currently, I have it set-up like this:
This (obviously) lets all users of the same group access each other's pages. how do I restrict them to just their own? This is probably a basic question, and I have searched the forum, but with no luck. Thanks in advance for your help...
Code: Select all
{cms_module module=CustomContent}
{if $ccuser->loggedin() && $ccuser->memberof('clients')}
{content}
{/if}