Support

Account

Home Forums Bug Reports Conditional Fields on Front End Forms Reply To: Conditional Fields on Front End Forms

  • I was having the same issue, but the solution was simple. Add acf_form_header() before any other wp_head related content. Example:

    function yourfunction_add_acf_header() {
      acf_form_head();
    }
    add_action( 'wp_head', 'yourfunction_add_acf_header', 0 );