Closed ko31 closed 5 years ago
@rubengc I want to set jQuery-Autocomplete options. So I added a filter hook that can set options.
For example, as follows.
add_filter( 'cmb_field_ajax_search_autocomplete_options', function ( $options ) { $options = [ 'minChars' => 3, ]; return $options; } );
Really nice, thanks!
Hi @ko31
Thanks for your contribution! PR merged!
@rubengc I want to set jQuery-Autocomplete options. So I added a filter hook that can set options.
For example, as follows.