Answer the question
In order to leave comments, you need to log in
Is it correct to completely get rid of the default woocommerce.css?
The woocomerce plugin has woocommerce.css
You can, of course, include your file and override styles. But it's a little annoying that that layout is on
float. Although now it is much more practical to use flex.
Accordingly, how correct is it to completely disable woocommerce.css in the plugin, and create your own and completely write styles from scratch? what will be the consequences of the next update?
No one has woocommerce.css for example under bootstrap 4?
Answer the question
In order to leave comments, you need to log in
You are free to do as you wish.
For example, if you create a theme template with _underscores , then it has code that completely disables all woo styles
add_action( 'wp', function () {
add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
} );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question