Support

Account

Home Forums Backend Issues (wp-admin) My acf_form is saving to the database but not showing up in the admin panel unde Reply To: My acf_form is saving to the database but not showing up in the admin panel unde

  • Is this exactly where and the order that the code appears on you page? or are you just leaving out the code in between. https://www.advancedcustomfields.com/resources/acf_form/

    acf_form_head(); must be placed before any HTML is generated. Generally before get_header(); in your template or in your header.php file something like this

    
    <?php
    /**
     * The template for displaying the header
     *
     * Displays all of the head element and everything up until the "site-content" div.
     *
     * @package WordPress
     * @subpackage Twenty_Fifteen
     * @since Twenty Fifteen 1.0
     */
    
     acf_form_head();
    
    ?><!DOCTYPE html>
    

    It may be saved in the database, but is it save to a post_id with a post type of “dog”?