Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created December 3, 2019 18:52
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 djrmom/b9df6802f275b09969a88df3390e1a42 to your computer and use it in GitHub Desktop.
Save djrmom/b9df6802f275b09969a88df3390e1a42 to your computer and use it in GitHub Desktop.
facetwp remove woocommerce js
<?php
/** remove facet's custom javascript for woocommerce **/
add_filter( 'facetwp_assets', function( $assets ) {
unset( $assets['woocommerce.js'] );
return $assets;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment