'WooCommerce: Display "Quick View" regardless of product being added to cart

I'm using WooCommerce with the Avada Fusion Theme, here is the demo store of the theme I'm using: https://avada.theme-fusion.com/bakery/shop/#start-shopping.

What I'm trying to achieve is, that the "Quick View" button on product thumbnail hovering is always displayed, even if a product is added to cart. I've added following CSS

   .cart-loading {
      display: none !important;
    }

..which works just fine and hides "View Cart" on product hover. Now I'd like to display the Quick View Button when hovering (as if the product has not been added to cart) and tried to add:

.fusion-quick-view {
  display: inline !important;
}

however this doesn't work.

Tried this and also failed:

.cart-loading:after {
 display:.fusion-quick-view !important
  ;
}

Any suggestions as to how I can remove the "condition" that Quick View is not displayed when product has been added to cart?

I appreciate any pointers, thanks!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source