frm
Well-known member
For a quick thread post, I want to show one required field and one non-required field for a single node only.
I am sure it's this line that I need to be working with:
But neither this
nor
work for me.
Is there a way around it besides opening up all custom fields in every node?
I am sure it's this line that I need to be working with:
Code:
<xf:if is="!$requiredOnly OR ($requiredOnly AND $fieldDefinition.required)">
But neither this
Code:
<xf:if is="!$requiredOnly OR ($requiredOnly AND $fieldDefinition.required) OR $forum.node_id == 3">
Code:
<xf:if is="!$requiredOnly OR ($requiredOnly AND $fieldDefinition.required) OR $xf.forum.node_id == 3">
Is there a way around it besides opening up all custom fields in every node?