Support

Account

Home Forums Front-end Issues Disable acf_form() navigate away warning Reply To: Disable acf_form() navigate away warning

  • Hi E,

    Thanks, that works.

    For anyone else who needs this, I’m using as the last script to load on the page.

    <script>
    (function($) {
      $(document).ready(function() {
        acf.unload.active = false;
      });
    })(jQuery);
    </script>
    </body>