We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want to use this plugin without a minimum, that is, there is no need to write at least 3 letters. what should I do?
The text was updated successfully, but these errors were encountered:
@Shahriarabedi AFAIK this plugin doesn't specify a default minimum value.
Can you confirm the version you're running and post your meta box configuration?
When defining the field, you can configuration Select2 via its system of data-* attributes. For example, to set the minimum search term length to 0:
data-*
$example_meta_box->add_field( array( 'name' => 'Example', 'id' => $prefix . 'example', 'type' => 'pw_select', 'options_cb' => 'iweb_get_cmb2_post_options', 'attributes' => array( 'data-minimum-input-length' => 0, ), ) );
Sorry, something went wrong.
No branches or pull requests
Hello, I want to use this plugin without a minimum, that is, there is no need to write at least 3 letters.
what should I do?
The text was updated successfully, but these errors were encountered: