To pick up on this thread, I have the Gallery field working fine IF you’re logged in, but it’s not working for logged-out users.
I’ve tried putting the uploader function in my code like this, but still not working:
add_action( ‘genesis_entry_content’, ‘shs_new_content’ );
function shs_new_content() {
acf_enqueue_uploader();
acf_form(array(
‘post_id’ => ‘new_post’,
‘post_title’ => true,
And of course, soon after posting, I find the answer.
For those interested, it was the genesis_meta hook that I needed:
add_action( ‘genesis_meta’, ‘shs_add_acf_head_functions’ );
function shs_add_acf_head_functions() {
acf_form_head();
}
Now the form is working properly and generating the Custom Post.