did you solve it?
Yes, even in my case the bug is in the pages where repeater fields with required subfields are active.
Hi!
Same problem with this version of ACF but with WordPress 4.9.8.
I have downgraded to the previous version of ACF and it works correctly.
Hi @zanetaylor
I also needed to update the custom fields associated with a comment and I discovered that the function update_field () can be used, as in other cases. In the case of comments, however, it is necessary to pass the object and not the ID, as in this example.
<?php
update_field( 'field_5a46bb8740511', $value, get_comment($comment_id) );
?>
Oh thanks @hube2!
There is no official page related to this filter in the documentation and in the pages concerning similar filters it wasn’t indicated that it worked only in the presence of a select (very strange). I hope that it will also be extended to other possibilities.
Hello
I’m trying to use the acf/fields/taxonomy/result/ filter, but without any result.
Even if I enter a simple test code like this:
function tp_taxonomy_result( $title, $post, $field, $post_id ){
$title = 'test text';
return $title;
}
add_filter('acf/fields/taxonomy/result/key=field_5a046d4c673af', 'tp_taxonomy_result', 10, 4);
I do not get any results in my taxonomy box.

Any idea why the filter does not seem to work?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.