Hook to prevent the plugin javascript files loading
apply_filters('asp_load_js', $stop);
$stop - when true, the JS files are not loaded
add_filter( 'asp_load_js', 'asp_stop_load_js', 10, 1 ); function asp_stop_load_js( $stop ) { if ( is_archive() ) return true; return false; }
Last updated 4 years ago