How to load default WooCommerce CSS file

If you are looking to load the default WooCommerce styling file instead of the dynamic WooCommerce styling version which uses the same default WooCommerce CSS file but loads your site primary color instead of the default WooCommerce primary color, then you can add this code snippet into functions.php file in your child theme:

add_filter( 'pixfort_load_woo_style', 'custom_woo_style_filter', 40, 1 );
function custom_woo_style_filter($load) {
    return false;
}

Note that this option requires the theme and pixfort core versions 2.0.6 or later.

To enable updates for Essentials theme, you can check this article:
https://essentials.pixfort.com/knowledge-base/how-to-update-essentials-theme/

pixfort
pixfort
Essentials support team
hub.pixfort.com

Hey, this is pixfort support team, if you still need help you can always reach us via the chat messenger in your account on pixfort hub

Related Posts