Support

Account

Home Forums Front-end Issues After frontend submission via acf_form() I see a blank page Reply To: After frontend submission via acf_form() I see a blank page

  • Try adding acf_form_head() within your first php block of code. The white space between the block is probably breaking the redirect.

    Like this:

    <?php 
    /* Template Name: Talent Submission */ 
    
    acf_form_head();
    get_header();
    ?>