Hello.
I've created a custom field for "Clan Rank" on my clan site. It uses drop-down multiple choice for selection.
I've modified the Member List to display the selected rank for each person with the following code:
<dt>{{ phrase('Rank')}}</dt>
<dd>{$user.Profile.custom_fields.rank|text}</dd>
However, this displays the Value of the member's rank rather than what was displayed in the selection text field. I guess this would be okay if it were possible to have "space" characters in between words for the value (like High Council for High Council) but illegal chars and spaces aren't possible there.
Is there any way I can display the text instead of value? (Or add a insert space to my value variable?)
Thanks!
I've created a custom field for "Clan Rank" on my clan site. It uses drop-down multiple choice for selection.
I've modified the Member List to display the selected rank for each person with the following code:
<dt>{{ phrase('Rank')}}</dt>
<dd>{$user.Profile.custom_fields.rank|text}</dd>
However, this displays the Value of the member's rank rather than what was displayed in the selection text field. I guess this would be okay if it were possible to have "space" characters in between words for the value (like High Council for High Council) but illegal chars and spaces aren't possible there.
Is there any way I can display the text instead of value? (Or add a insert space to my value variable?)
Thanks!