Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active February 19, 2019 16:57
Show Gist options
  • Select an option

  • Save djrmom/1ddacfd21b9c7e42e0614dcf2722d6cb to your computer and use it in GitHub Desktop.

Select an option

Save djrmom/1ddacfd21b9c7e42e0614dcf2722d6cb to your computer and use it in GitHub Desktop.
facetwp allowinput datepicker
<?php
/** add js to footer to modify date_range options **/
add_action( 'wp_footer', function() { ?>
<script>
(function($) {
if ( 'undefined' !== typeof FWP ) {
FWP.hooks.addFilter('facetwp/set_options/date_range', function(flatpickr_opts, extras) {
flatpickr_opts['allowInput'] = true;
return flatpickr_opts;
});
}
})(jQuery);
</script>
<?php }, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment