Any simple guides on making forms do anything
-
This feature seems to be incredibly helpful but in practice I cannot make it do anything useful. The documentation is incredibly detailed and well organized but the thing I am looking for and continue to thing MUST be there is not there. I must be missing something.
I want to take an ACF field group that I created for a custom post type and output the form with that field group somewhere in admin not on that cpt edit page. It seems like using a filter to change the post_id I am trying to edit should do this: something like:
add_filter('acfe/form/load/form=testing-1', 'my_form_load', 10, 2); function my_form_load($form, $post_id){ // change the affected post id $form['post_id'] = 3337; return $form; }
should change the post affected, but doing this along with Dynamic form post actions does not do anything.
Please tell me what I am missing in all this well worded and very organized documentation
The page I need help with: [log in to see the link]
- The topic ‘Any simple guides on making forms do anything’ is closed to new replies.