Everything works fine, but I can't seem to get past the basic
" {cms_module module=CustomContent}
{if $ccuser->loggedin() && $ccuser->memberof('clients')}
Here is some custom content just for clients!
{/if}"
The above code is within my template and works fine. But, I want to have it so that when clients log in they are shown specific content just for them (rather than a whole group). Alternatively, each client could be redirected to their own specific page. This page would need to be secure, eg, if someone tries to access the page directly by typing the link directly into their browser (rather than using the login page), then they either need to be sent to the login page or asked for their username and password.
So far, the only answer I can come up with is to have a specific template for every client, or add if/else statements to the template for every client, both of which are not feasible
