Hi Daniel,
To remove styles and scripts of woocommerce please add this following code in functions.php file of child theme
/**
* Dequeue the jQuery and css of woocommerce
*
* Hooked to the wp_enqueue_scripts action, with a late priority (100),
* so that it is after the script was enqueued.
*/
function puresimple_child_dequeue_script() {
wp_dequeue_style( 'puresimple-woocommerce');
wp_dequeue_script('woocommerce-zoom');
}
add_action( 'wp_enqueue_scripts', 'puresimple_child_dequeue_script', 100);
Note: please use child theme to add this code, otherwise your changes will be lost on theme update.
Thanks