Support

Account

Home Forums Front-end Issues HTTP Requests Reply To: HTTP Requests

  • Actually, checking if someone is logged in before calling acf_form_head(); took care of all of those and more.

    
    <?php 
      if(is_user_logged_in()):
        if(class_exists('acf')):
          acf_form_head();
        endif;
      endif;
    ?>