Tagged: Cart, catalog, woocommerce
I would like to remove the “Add to cart” and Quantity counter from the product details page. I just trying to build Catalog website using woo commerce.
I am using enfold 2.7 and WP 3.9
Hi!
Thank you for using the theme.
You can add this on Quick CSS or custom.css:
.single-product form.cart {
display: none;
}
Best regards,
Ismael
thanks that removed add to cart button on product details page.
I need remove shopping cart icon on the right as well. I am just doing catalog website
Hi!
Please add following code to Quick CSS as well
.cart_dropdown.visible_cart { display: none !important; }
Regards,
Yigit
I added in custom.css . works great. thanks