您可以更改CSS加载顺序。
找到WooCommerce排队的地方,它是CSS,记住它是$handle
(名称)。搜索wp_enqueue_style
.
然后转到主题functions.php
找到你的主题所在的位置,它是CSS。
现在更改主题wp_enqueue_style
通过添加WooCommerce$handle
到$deps
主题的(依赖项)参数wp_enqueue_style
.
在这些操作之后,WordPress将在WooCommerce CSS之后加载主题CSS,该CSS将被覆盖。
例如:
<?php
wp_register_style(
\'your-theme-css\', // theme CSS handle (name)
get_template_directory_uri() . \'/your-theme.css\', // theme CSS path
array(\'woocommerce-css-handle\') // dependencies
);