I am trying to change the WooCommerce loading spinner icon. It’s defined in the woocommerce.css: I’ve tried changing the loader.svg with a custom css: But the icon will not...
  • February 28, 2022
  • 0 Comments
In the “woocommerce/templates/checkout” folder there is a file called “form-checkout.php”. Copy the contents of that file to “yourtheme/woocommerce/checkout/form-checkout.php” On line ~54 there is the following code: Move that to...
  • February 28, 2022
  • 0 Comments
Update for WooCommerce 3+ The hook wc_add_to_cart_message is deprecated and replaced by wc_add_to_cart_message_html. You can use the following (compact effective way): Or the normal way: Before WooCommerce 3, use this: Removing only...
  • February 26, 2022
  • 0 Comments