Support

Account

Home Forums Front-end Issues Front End Form Submitting – Not Working Correctly Reply To: Front End Form Submitting – Not Working Correctly

  • Indeed I do. After I submit the form, the screen I posted above is the one I get. Here is the code I use:

    <?php
    /**
     * Template Name: Home Page
     *
     */
    acf_form_head();
    get_header(); ?>
    
    <?php 
    	
     acf_form(array(
    	'post_id' => 'new_post',
    	'post_title' => true,
    	'new_post' => array(
    		'post_type' => 'nf_slider',
    		'post_status' => 'draft'
    	),
    	'submit_value' => 'Create Slider'
    ));
    ?>
    
    <?php get_footer(); ?>