I have a flexible content layout with two tabs: settings and content. And I would like to make content tab visible when the page throw a validation error.
acf.add_filter('validation_complete', function(json){
if(json.errors) {
// open all content tabs.
}
return json;
});