XF 2.0 How to display a custom user profile?

Mr. Jinx

Well-known member
I have a custom user profile with multiple values (pull down).
What is the best way for displaying the text of the selected value?

This will display the value:
Code:
{$user.Profile.custom_fields.id}
...but I would like to display the text.

In XF1, it was something like this:
Code:
{xen:helper userFieldValue, $userFieldsInfo.id, $user, {$user.customFields.id}}

Anything nice for XF 2.0?
 
Last edited:
Ok, found a solution: Don't use this function and find a workaround :)
Right now I re-use an existing macro which does the job.
Still curious though, maybe if someone else needs this...
 
Last edited:
Top Bottom