Support

Account

Home Forums ACF PRO how to create front end form data add in post Reply To: how to create front end form data add in post

  • giving error. i think it is sytex error screenshot

    <?php acf_form_head(); ?>
    <?php 
    /*
    Template Name: Application
    */
    get_header(); ?>
    
    <div id="primary">
    		<div id="content" role="main">
    
    			<?php 
        $args = array(
            'field_groups' => array('members-field')), // Field Group name
            'post_id' => 'new_post',
            'new_post' => array(
                'post_type' => 'post',
                'post_status' => 'draft'
             ),
            'submit_value' => 'Submit Application'
        );
        acf_form(); 
    ?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
        
        
    
    <?php get_footer(); ?>

    page-application.php on line 15

    in function bellow code also show error

     if( $post_id != 'new' ) {
            return $post_id
     	}

    but i made it like

     if( $post_id != 'new' ) {
            return $post_id;
     	}
    	

    now no error showing.

    i am sorry to say i am not so expert on php code yet. that’s why may be can not fix small small think.

    would you please see what’s wrong code

    also please see my screenshot from admin screenshot

    Show this field group if this setting ok or not ?