Remove WooCommerce block styles

PHOTO EMBED

Thu Feb 08 2024 07:20:10 GMT+0000 (Coordinated Universal Time)

Saved by @Lucian_DEV #php

/* Remove WooCommerce block styles */
function ya_remove_block_css() {
    wp_dequeue_style( 'wc-block-style' ); // WooCommerce
}
add_action('wp_enqueue_scripts','ya_remove_block_css', 100);
content_copyCOPY