Skip to content

Removing Default Stylesheets in WooCommerce

In this post, we’ll be discussing how to remove the default stylesheets in WooCommerce using a simple code snippet. This can be useful for those who want to use their own custom styles or who want to improve page load times by only loading the necessary styles.

The code snippet uses the woocommerce_enqueue_styles filter and the __return_empty_array function to prevent WooCommerce from loading its default stylesheets on the frontend of your website.

The __return_empty_array function is used as a callback for the woocommerce_enqueue_styles filter, which is responsible for enqueuing the default WooCommerce styles. By returning an empty array, it prevents WooCommerce from loading any of its default styles on the frontend of your website.

It’s worth noting that this code snippet will remove all the default stylesheets from WooCommerce so you might want to enqueue the ones that you actually need for your website. Also, if you are planning on using custom styles, you will need to enqueue them separately.

Summary:

By adding this code snippet to your functions.php file, you can easily remove the default stylesheets in WooCommerce. This can be useful for those who want to use their own custom styles or who want to improve page load times by only loading the necessary styles. Remember to test it before going live and make sure you have the proper backup of your website.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *