I was thinking about doing it this way, but it doesn't workHello,
Any idea how can I make custom thread fields visible only for chosen user group? And If user in not in this group there will be custom message, you have to be registered to see content?
<xf:if is="$xf.visitor.isMemberOf([1])">
{$valueUrl}
</xf:if>
I was trying to do it in this way too, but it doesn't work tooI was thinking about doing it this way, but it doesn't work
Rich (BB code):<xf:if is="$xf.visitor.isMemberOf([1])"> {$valueUrl} </xf:if>
<xf:if is="$xf.visitor.is_registered">
{$value}
<xf:else />
<p>text</p>
</xf:if>