Support

Account

Home Forums Front-end Issues white page after acf_form update

Unread

white page after acf_form update

  • when i submit the form and update a user. the page become white .
    i don`t know way and have 0 error massages.
    in my dev environment its works. the problem starts in
    production
    my code:

    
    acf_form_head();
    
    $s = get_the_id();
    $update_args = array(
        'post_id' => $s,
        'post_title' => false,
        'submit_value' => 'Update',
        'post_content' => false,
        'html_submit_spinner' => '<span class="acf-spinner"></span>',
        'updated_message' => 'Student Information Was Updated',
        'honeypot' => true,
        'fields' => array(
            'child_first_name',
            'child_last_name',
            'child_age',
            'parent_last_name',
            'parent_first_name',
            'student_list__address',
            'student_list_email',
            'student_list_phone',
            'fee_to_pay',
        ));
    
    acf_form($update_args);
    
Viewing 1 post (of 1 total)

The topic ‘white page after acf_form update’ is closed to new replies.