Is it possible to Remove the chekout, view cart from woocommerce and Add to cart button from each product?
if yes please i need help to do it?
Thanks
Is it possible to Remove the chekout, view cart from woocommerce and Add to cart button from each product?
if yes please i need help to do it?
Thanks
Comments are closed.
You can remove checkout and cart page from woocommerce -> settings -> checkout -> checkout pages.Remove selected cart page and checkout page from settings.
For removing ‘Add to Cart’ button from shop page and single product page insert following code in your themes function.php file –
Yes, It is possible, there are many methods to do it, let me provide you the easiest trick.
Step #1: first find the Unique ID or Class identifier name of the button that you like to be removed. You can find it easily with the help of Browser Developer Tools.
for example, say your button html is like:
So, now in the above code we get its class name is .add_to_cart
Step#2:
you just need to add following line into the style.css of your theme.
now reload the page and you will see that the button is gone, completely removed.