Support

Account

Home Forums Front-end Issues Post created from frontend forms are not persisted Reply To: Post created from frontend forms are not persisted

  • User error..

    The following changes resolved my issues:

    function add_acf_code_to_add_event_page() {
        if( is_page( 1450 ) ){
            acf_form_head();
        }
    }
    add_action( 'get_header', 'add_acf_code_to_add_event_page' );