Home › Forums › ACF PRO › Users fields not saving › Reply To: Users fields not saving
This is all my template file :
<?php
acf_form_head();
get_header();
$author = wp_get_current_user();
$author_id = get_current_user_ID();
?>
<?php
$options = array(
‘post_id’ => ‘user_’.get_current_user_ID(), // $user_profile,
‘field_groups’ => array(115),
‘submit_value’ => ‘Enregistrer’,
‘updated_message’ => __(“Profil mis à jour”, ‘acf’),
);
acf_form( $options );
?>
<?php
get_footer();
?>
As you can see there’s nothing wrong with this template file.
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.