Home › Forums › Lorina › Add to Cart missing › Reply To: Add to Cart missing
November 20, 2020 at 11:20 am
#12724
Andy
Keymaster
The ‘YITH WooCommerce Catalog Mode’ plugin is hiding the add to cart button with this CSS:
form.cart button.single_add_to_cart_button, form.cart .quantity, .woocommerce-variation-price{display: none !important}
You can add the following CSS to ‘Customize’ > ‘Additional CSS’ and it should override the YITH code:
form.cart button.single_add_to_cart_button {
display: block !important;
}