Azaly
Active member
Hello! Need help with user custom fields . I try to show it in member tooltip, but just don't know how to show {$choice} value instead of {$value} .
This shows only {$value} :
I've also tried
Value display HTML is set to {$choice} in User » Custom field » Edit field options.
This shows only {$value} :
Code:
<xf:if contentcheck="true">
<div class="memberTooltip-blurb">
<xf:contentcheck>
<xf:userblurb user="$user" tag="div" />
<xf:if is="$user.Profile.custom_fields.varr">
<span class="userTitle" dir="auto">$user.Profile.custom_fields.varr</span>
</xf:if>
</xf:contentcheck>
</div>
</xf:if>
{$user.Profile.custom_fields.getFormattedValue('varr')}
with same result.Value display HTML is set to {$choice} in User » Custom field » Edit field options.