Read ACF select field in user profile

Hello,

I’m trying to get the value of some ACF custom select field, from the user profile.

<Loop type=user id=current>
  <Field acf_select=myfield field=Label />
</Loop>

And I get nothing.

If I don’t try to get the label, it works (but gives me the value) :

<Loop type=user id=current>
  <Field acf_select=myfield />
</Loop>

Is there a way to do this without changing the field configuration?

Thanks !

<Loop acf_select=myfield field=labels>
  Label: <Field />
</Loop>

Hi @antoine.baldacci_tan, you may want to try this if you’re still working on resolving the issue with your code.

Hello,

Had found the same trick actually. A tad verbose but do the job.

Thanks!