[Solved] Help on how to show or hide Email in FEU Listing
Posted: Sat May 31, 2008 4:01 am
I need away to make is so in the FEU Listing it will show or hide a members email depending on there preference. I created a check box property and played with custom content for a while.
A line i created that kinda works
But the problem with this is that it shows everyones email or no ones, any ideas to make it work?
-- 0:) Trevix
A line i created that kinda works
Code: Select all
{if $ccuser->property('hide_email') < 1}
{$entry.email|escape:"hexentity"}
{else}
*hidden*
{/if}
-- 0:) Trevix
