Support

Account

Home Forums General Issues User profile meta fields in front-end profile edit page Reply To: User profile meta fields in front-end profile edit page

  • Just found that with this function I can get all fields from field group –

    <?php acf_form_head(); ?>
    <?php get_header(); ?>
    
      <div id="primary" class="content-area">
        <div id="content" class="site-content" role="main">
    
          <?php /* The loop */ ?>
          <?php while ( have_posts() ) : the_post(); ?>
    
            <?php acf_form(array(
              'field_groups' => array(327),
            )); ?>
    
          <?php endwhile; ?>
    
        </div><!-- #content -->
      </div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    But the problem is that fields isn’t filled in with logged in user info, all inputs are empty. Is there any way to connect it to user profile so it will show up user fields and they can update them?