DBA
Well-known member
Ok so I'm trying to add a custom field that will allow members to enable viewing images in signatures. My idea was to create a new checkbox custom field that says "Check box to enable images in signatures". However I'm having some issues with the conditionals.
By default it should display:
And after checking the box the above code would no longer be displayed.
My thought process was something like this (not valid code ).
<xen:if customField is unhecked>
.signature .bbCodeImage
{
display: none !important;
<xen:else />
</xen:if>
Any ideas?
By default it should display:
Code:
.signature .bbCodeImage
{
display: none !important;
}
And after checking the box the above code would no longer be displayed.
My thought process was something like this (not valid code ).
<xen:if customField is unhecked>
.signature .bbCodeImage
{
display: none !important;
<xen:else />
</xen:if>
Any ideas?