Home › Forums › Front-end Issues › acf_form, Woocommerce and user image field › Reply To: acf_form, Woocommerce and user image field
Here’s how I got this to work. Note the ‘post_id’ and ‘return’ values in acf_form():
add_action( 'woocommerce_save_account_details', 'acf_form_head', 20 );
function my_woocommerce_edit_account_form() {
?>
<fieldset style="margin: 20px 0">
<legend>Company</legend>
<?php
acf_form( array(
'post_id' => 'user_' . get_current_user_id(),
'form' => false,
'fields' => array(
'field_5846fdde9fe34',
'field_5846fdf79fe35',
'field_5846fe349fe36',
),
'return' => false,
) );
?>
</fieldset>
<?php
}
add_action( 'woocommerce_edit_account_form', 'my_woocommerce_edit_account_form' );
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!
🚀 ACF & ACF PRO 6.0.7 are now available.
— Advanced Custom Fields (@wp_acf) January 18, 2023
✨This release contains bug fixes and improvements while we continue to work on the next major release of ACF.https://t.co/wQgAOpwmUI
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.