Support

Account

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.