我要做的是,根据我想要自定义的内容禁用Woocommerce默认样式,而不是覆盖css。
Woocommerce默认加载3种样式:Woocommerce general。CSSWoocomerce布局。csswoocommerce小屏幕。css
如果要完全自定义,可以通过添加以下内容禁用所有样式,或仅禁用不需要的样式:
// Remove each style one by one
add_filter( \'woocommerce_enqueue_styles\', \'jk_dequeue_styles\' );
function jk_dequeue_styles( $enqueue_styles ) {
unset( $enqueue_styles[\'woocommerce-general\'] ); // Remove the gloss
unset( $enqueue_styles[\'woocommerce-layout\'] ); // Remove the layout
unset( $enqueue_styles[\'woocommerce-smallscreen\'] ); // Remove the smallscreen optimisation
return $enqueue_styles;
}
// Or just remove them all in one line
add_filter( \'woocommerce_enqueue_styles\', \'__return_false\' );
查看Woocommerce文档了解更多详细信息
Disable the default stylesheet