Support

Account

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(); ?>

    based on this

    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.