… of course, had I googled with ACF pro as a keyword, then I might have seen this..
https://support.advancedcustomfields.com/forums/topic/frontend-user-registration-form/
So looks like its not ‘out of the box’ behaviour, but doable. Will give it a go.
Thanks. I’m now trying to figure out how to uplaod files directly to Amazon S3. I built a prototype in node.js (its whats I know). PHP / wordpress is total new to me (hence using Timber – as it’s more in line with what I know). I built my first wordpress site last week. Glad I stumbled upon ACF 🙂
Thanks. I tried the buffer code that he suggested – this didn’t work. So I went with:
`ob_start();
acf_Form($new_post);
$context[‘vf_form’] = ob_get_clean();
which did work. I find all this buffer stuff a bit weird.