template conditionals inside xen:checkboxunit

Jake B.

Well-known member
I'm needing to wrap one of the options in my checkbox unit with a conditional (so that it only displays if certain conditions are met). When I tried using the xen:if conditional around the option I got a message stating:
"Unknown tag: option"

If this isn't possible I can of course create the ctrlUnit and inputs manually, but I'd prefer to leave that to XenForo if possible.
 
@Chris D any chance there is something like this for xen:breadcrumb? I've tried using displayif, and it doesn't seem to be a valid parameter, and i cannot use xen:if inside xen:navigation. I'd rather not have two instances of xen:navigation in my template if there is another option :)
 
Prepare your breadcrumbs in PHP and pass them to the template e.g. <xen:breadcrumbs source="{$breadcrumbs}" />
 
Top Bottom