How do I show different things for different profiles?
Design and Skin Customization
Probably the easiest way is to allocate the 'profile groups' separate quotas, then use the $profile_quota_id variable in the templates to show the different options -
{if $profile_quota_id == 1}
Do This
{elseif $profile_quota_id == 2}
Do That
{else}
Do the Other
{/if}
hth
Pa