jQuery(document).ready(function($) { $(document).live('acf/setup_fields', function(e, div){ $(".select2search").each(function(index, el) { $(el).select2({ placeholder: langs.placeholder, templateSelection: template, }); }); }); function template(data, container) { return data.text.replace(/\s\(.*?\)/,""); } });