Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active July 30, 2020 13:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mgibbs189/47fe37effb126e5b8870b64728b34778 to your computer and use it in GitHub Desktop.
Save mgibbs189/47fe37effb126e5b8870b64728b34778 to your computer and use it in GitHub Desktop.
FacetWP - modify flatpickr options
<script>
(function($) {
FWP.hooks.addFilter('facetwp/set_options/date_range', function(flatpickr_opts, extras) {
flatpickr_opts['allowInput'] = true;
return flatpickr_opts;
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment