Link to home
Start Free TrialLog in
Avatar of Mike Waller
Mike WallerFlag for United States of America

asked on

hide add to cart button from product pages

I need to hide the Add to Cart buttons on all product pages on this site:

http://www.haitiancreations.com/springtime

If you click on an image though, it pulls up the detail of that product.  I only need the Add to Cart button on that detail page.

Any ideas on how to do that?
Avatar of Rartemass
Rartemass
Flag of Australia image

This comment won't help with your specific question, however I was wondering why you wanted to remove the add to cart from the main page.
I would think it would add to the usability of the site. If someone sees the image and knows they want it, they can click easily.
The main product page as is would aid in selecting multiple items quickly, instead of selecting the individual product page for 12 different items.
Just my thoughts.
ASKER CERTIFIED SOLUTION
Avatar of LZ1
LZ1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike Waller

ASKER

I know, but it's just what the owner wants.  so I can add those things to my custom.css stylesheet, yes?
Thats right.  Try it and let us know
Okay, I did the following but now all the Add to Cart buttons are hidden:

a.button, button.button, input.button, #review_form #submit {
display: none;
}
Okay, I just needed to add this:

a.button {
display: none;
}

Thanks!