woody
Well-known member
I'm trying the following code in various ad_position templates, and I'm just not seeing why it's not working...
Trying to allow for user selection to see or not see specific sections based on their radio button selection in their Preferences.
Thanks for any assistance
Code:
<xen:if is="{$visitor.customFields.code_navbar.block_one} == 'off'">
display content - block one
<xen:else />
do not display content
</xen:if>
<xen:if is="{$visitor.customFields.code_navbar.block_two} == 'off'">
display content - block two
<xen:else />
do not display content
</xen:if>
Trying to allow for user selection to see or not see specific sections based on their radio button selection in their Preferences.
Thanks for any assistance