Hello,
I use GPP and GB free for now.
I wonder if I can remove this CSS.
/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/style.css
I plan to use below code, Is it safe or do you have better idea?
function disable_woocommerce_block_editor_styles() {
wp_deregister_style( 'wc-block-editor' );
wp_deregister_style( 'wc-block-style' );
}
add_action( 'enqueue_block_assets', 'disable_woocommerce_block_editor_styles', 1, 1 );
function slug_disable_woocommerce_block_styles() {
wp_dequeue_style( 'wc-block-style' );
}
add_action( 'wp_enqueue_scripts', 'slug_disable_woocommerce_block_styles' );