Support

Account

Home Forums General Issues Form populated with previously submitted data… Reply To: Form populated with previously submitted data…

  • Hi James

    Thanks for this.

    From the information the link you sent I’m using

    <?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(); ?>
    
    			<?php endwhile; ?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    However I only want certain fields to be editable?
    Can you tell me how to do that?
    Thanks