Home › Forums › ACF PRO › Removing values from the Post Object select dropdown › Reply To: Removing values from the Post Object select dropdown
This is my solution for this:
Add this to execute a particular script:
add_action('acf/input/admin_footer', array($this, 'filter_results'));
public function acf_filter_products_selection() {
?>
<script type="text/javascript">
(function($) {
acf.add_action('ready', function( $el ){
acf.add_filter('select2_ajax_results', function( json, params, instance ){
//Do whatever you want with the json.results array that contains the
//results from the DB
return json;
});
});
})(jQuery);
</script>
<?php
}
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.