Support

Account

Home Forums Front-end Issues Error when creating new post Reply To: Error when creating new post

  • I was having the same problem. Here’s the code snippet that worked for me to solve it:

    add_action( 'wp_head', 'clb_add_acf_form_functionality', 2);
     function clb_add_acf_form_functionality() {
    
    	 acf_form_head();
    
    }