Home › Forums › Front-end Issues › Easy Digital Downloads – Frontend Submission customisation ACF Fields › Reply To: Easy Digital Downloads – Frontend Submission customisation ACF Fields
I run into the similar issue. @olijames Did you ever find a solution to this?
add_action('some-hook-name', 'my_modify_dd_form', 10, 3);
function my_modify_dd_form($form_id, $post_id, $form_settings) {
$args = array(
'post_id' => $post_id,
'field_groups' => array(16),
'form' => false,
'return' => ''
);
acf_form( $args );
}
Using the above hook, I am able to populate ACF fields on the front-end – submission form but the values/changes are not saving/updating even though added acf_form_head();
in the template header.
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.