I have set up a form with advanced custom fields on the frontend in order to allow posts being generated from the frontend.
The form works but every time I visit the page with the form the form is prefilled with values however in the custom field setup I have no default value specified.
here is the code I am using.
<?php acf_form_head();
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php the_post(); ?>
<?php
$options = array(
'post_id' => 'new',
'field_groups' => array(36),
'submit_value' => 'Create Quote Request' ,
'updated_message' => 'Quote Created!'
);
acf_form( $options ); ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>
Any advice is appreciated.