<?php
/** remove facet's copy of google maps when another plugin or theme is already loading it **/
add_filter( 'facetwp_assets', function( $assets ) {
unset( $assets['gmaps'] );
return $assets;
});
Code snippets for FacetWP
<?php
/** remove facet's copy of google maps when another plugin or theme is already loading it **/
add_filter( 'facetwp_assets', function( $assets ) {
unset( $assets['gmaps'] );
return $assets;
});