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 );
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.