CSS Classes For WooCommerce – Add CSS classes to the body depending on the customer and the cart

plugin banner

CSS classes depending on the cart to customize the checkout.

Author:Jose Mortellaro (profile at wordpress.org)
WordPress version required:4.6
WordPress version tested:6.5
Plugin version:0.0.3
Added to WordPress repository:17-08-2023
Last updated:19-03-2024
Rating, %:100
Rated by:1
Plugin URI:https://josemortellaro.com/
Total downloads:312
Active installs:10+
plugin download
Click to start download

CSS Classes For WooCommerce adds CSS classes to the body depending on the cart and the customer.
You can then use those classes to customize the checkout and cart pages with your custom CSS.

CSS classes added to the body if:

  • The cart is empty or not empty
  • There is at least a product with a price greater than zero (payment methood needed)
  • The shipping methods are shown or not needed
  • If the shipping address is needed or there are only digital products in the cart
  • The prices are shown including or excluding taxes
  • All products are sold individually
  • There are specific products in the cart
  • The quantity of specific products is a specific number
  • The billing address of the customer has a specific country
  • The customer has a specific role on the website
  • The customer has already bought something
  • The customer has bought a specific number of time

If for example in the cart there are only products that can be sold individually, you can take advantage of the CSS class added by this plugin to hide the column “Qty” .
In this case you will write the CSS

.ccfw-cart-all-sold-individually-true .shop_table .product-quantity {
    display: none;
}

How customize the WooCommerce cart and checkout via CSS

  • The plugin doesn’t provide any option, and you will not see any settings page. Just activate it.
  • Right-click and click on Inspect on the frontend.
  • Read the value of the class attribute of the body element.
  • Use the CSS classes added to the body for your custom CSS

Requirements

You can take advantage of this plugin only if you have at least basic skills with CSS and are able to add your custom CSS.
In other cases, you will not know what to do with this plugin.


ChangeLog