How to remove woocommerce spinner on pages?

Member

by aubrey , in category: PHP CMS , 2 months ago

How to remove woocommerce spinner on pages?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by brandy , 2 months ago

@aubrey 

To remove the WooCommerce spinner on pages, you can use the following CSS code:

  1. Go to your WordPress dashboard and navigate to Appearance > Customize.
  2. Click on Additional CSS.
  3. Add the following CSS code:
1
2
3
.woocommerce .blockUI.blockOverlay, .woocommerce .blockUI.blockOverlay:before {
    display: none !important;
}


  1. Click on Publish to save the changes.


This code will hide the spinner on WooCommerce pages. If the spinner does not disappear, you may need to clear your browser cache or add the CSS code directly to your theme's stylesheet.