Can you add some hook in future updates?
Hello, thanks for the answer, but I had something else in mind.
There is a function in acf-form-functions.php
function acf_form_data( $data = array() ) {
// Apply defaults.
$data = wp_parse_args($data, array(
/** @type string The current screen (post, user, taxonomy, etc). */
'screen' => 'post',
/** @type int|string The ID of current post being edited. */
'post_id' => 0,
/** @type bool Enables AJAX validation. */
'validation' => true,
));
In which the value “validation” is always = true.
Is it possible to change this value to “false” when creating one form, and leave it “true” when creating another?
Thankyou.