This isn’t 100% related, but it does concern 5.7 compatibility. I’m trying to use the “Pages” field and getting a bunch of JavaScript errors. Here’s what I’m seeing:
assets/js/forms.js
163: acf.validation.toggle( form.$el, 'lock' );
No longer a function. Replacing it with acf.validation.lockForm(form.$el);
works. In fact, the entire validatePage method is broken with ACF’s JS overhall from 5.7 (you’ll see so many methods removed/streamlined in acf-input.js). Replacing the whole thing with acf.validation.fetch( { form: form.$el, complete: callback() } );
seems to be working, but I don’t know enough about either plugin to know if this is a solution.
Anyway, fantastic plugin! After fighting with so many contact forms and loving ACF, this is exactly what I was hoping for.