Support

Account

Forum Replies Created

  • Hi John,
    It might have to be set up as a separate field type, rather than a configuration within the Date field, but a month picker has definitely been made using the jQuery UI picker. See this plugin here:

    https://kidsysco.github.io/jquery-ui-month-picker/

  • I couldn’t get my field to match ACF exactly but I did make use of select2.js multiselect by adding multiple="multiple" to my <select> element and calling the select2() function on the element after giving it a unique id.

    jQuery(#example).select2()

    I also added data-placeholder="Select" to display placeholder text, and added a CSS rule to ensure the field went full width. Select2 creates another element that you need to apply the style to, but the id of it should be predictable based on the name of the original select element

    #s2id_example { width: 100%; }

    ACF produces a handful of other attributes (data-ui, data-multiple, data-allow_null) for it’s own native multiselect elements, but I haven’t yet figured out what they do and they didn’t seem to make a difference on my own custom select element.

Viewing 2 posts - 1 through 2 (of 2 total)