yanknudtskov
1/4/2014 - 1:31 PM

From http://gregrickaby.com/remove-woocommerce-styles-and-scripts/

add_action( 'init', 'child_manage_woocommerce_styles', 99 );
define( 'WOOCOMMERCE_USE_CSS', false );

/**  
* Remove all WooCommerce scripts and styles 
*  
* @author WP Smith 
* @since 1.0.0  
*/ 

function child_manage_woocommerce_styles() 
{ 
  remove_action( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) );
  remove_action( 'wp_enqueue_scripts', array( $GLOBALS['woocommerce'], 'frontend_scripts' ) );
}