HELLO! for some reason a acf_form works on the homepage but not on inner pages. I have a save action on post save too could this be the issue?
acf_form(array(
// 'post_id' => 'new-enquiry',
'post_id' => 'new_post',
'new_post' => array(
'post_type' => 'enquiries',
'post_title' => "Enquiry from " . get_the_title() . " page",
'post_status' => 'publish',
'tags_input' => array("tags"),
),
'field_groups' => array("107"),
// 'return' => false,
'submit_value' => 'Submit enquiry',
'updated_message' => false
));
didnt have:
acf_form_head();
on every page. I added to my header.php now