<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below into functions.php

/**
 * Remove all WooCommerce scripts and styles! Forever!
 *
 * @author WP Smith
 * @since 1.0.0
 */
function grd_remove_woocommerce_styles_scripts() {
	remove_action( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) );
	remove_action( 'wp_enqueue_scripts', array( $GLOBALS['woocommerce'], 'frontend_scripts' ) );
}
define( 'WOOCOMMERCE_USE_CSS', false );
add_action( 'init', 'grd_remove_woocommerce_styles_scripts', 99 );