Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created June 25, 2019 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/e963a2765b087584e158779450f64621 to your computer and use it in GitHub Desktop.
Save mgibbs189/e963a2765b087584e158779450f64621 to your computer and use it in GitHub Desktop.
Force-load fSelect
<?php
add_filter( 'facetwp_load_assets', '__return_true' );
add_filter( 'facetwp_assets', function( $assets ) {
$assets['fSelect.js'] = FACETWP_URL . '/assets/vendor/fSelect/fSelect.js';
$assets['fSelect.css'] = FACETWP_URL . '/assets/vendor/fSelect/fSelect.css';
return $assets;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment