Hello,
I have Taxonomy field displayed as Select.
I would like to remove search dropdown in the field.
Stylized UI option is missing in settings in admin (It’s present in regular Select field though).
I believe I can do so using JavaScript API but can’t figure out how-to
acf.add_filter('select2_args', function(args, element, settings) {
//Something here
}
return args;
});