Home › Forums › Backend Issues (wp-admin) › acf_form values not displaying in admin, are displaying on front end › Reply To: acf_form values not displaying in admin, are displaying on front end
Okay, realized there were lots of console errors that were most likely related to this (it’s what was causing the date picker issue among others)
Noticed that if I switched the order of
<?php acf_form_head(); ?>
<?php get_header(); ?>
to
<?php get_header(); ?>
<?php acf_form_head(); ?>
This caused an issue on submit as mentioned.
So, I added
<?php
ob_start();
get_header();
acf_form_head(); // <--- here!
echo ob_get_clean();
?>
Now the info appears in the admin correctly after submit…but doesn’t display correctly on the front end.
To be continued.
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.