Home › Forums › Front-end Issues › Front End and custom user meta › Reply To: Front End and custom user meta
Hi @dominic
Currently, this is not an easy task with ACF, but it is possible.
I would first use another plugin to create the user edit form, then find an action which allows you to add extra HTML inside the form.
In this action, you can ask ACF to render the custom fields like so:
acf_form(array(
'field_groups' => array(123) // the ID of the field group
'form' => false
));
This will produce the ACF HTML without the form tags.
Once you have the fields appearing, let me know.
Cheers
Elliot
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.