Zen Cart Logo

Showcase Only

Locked

Views: 1,169

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
29 Jul 2008, 8:34 PM
#1
jballotti avatar

jballotti

New Zenner

Join Date:
Mar 2008
Posts:
53
Plugin Contributions:
0

Showcase Only

I'm setting up a site as a showcase only and I'm getting a contact us text link at the bottom of my product pages. I get this whether I'm set to us image buttons or CSS buttons. When I look at the source code, the link is showing up inside a DIV tag with ID="addCart". I'm going to assume that this would otherwise be where the add to cart button would be. Can anyone tell me if there is a way to turn this off from the admin or do I have to edit the appropriate template php file and remove the code block?

You can view the problem at http://ipicdg.com/RWP/
Just select a product (there's only two of them) and scroll to the bottom.

Thanks :smile:

29 Jul 2008, 9:35 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Showcase Only

Your link is not to a Zen Cart???

29 Jul 2008, 10:49 PM
#3
jballotti avatar

jballotti

New Zenner

Join Date:
Mar 2008
Posts:
53
Plugin Contributions:
0

Re: Showcase Only

kobra:

Your link is not to a Zen Cart???

Sorry about that, try this one: http://ipicdg.com/RWP/catalog/

29 Jul 2008, 11:32 PM
#4
bigbadboy avatar

bigbadboy

Totally Zenned

Join Date:
Apr 2008
Location:
London
Posts:
557
Plugin Contributions:
0

Re: Showcase Only

Easiest solution - In your main stylesheet - /includes/templates/custom/css/stylesheet.css

Look for #cartAdd (line 367) and add this:

display:none;
visibility:hidden;

30 Jul 2008, 12:25 AM
#5
jballotti avatar

jballotti

New Zenner

Join Date:
Mar 2008
Posts:
53
Plugin Contributions:
0

Re: Showcase Only

bigbadboy:

Easiest solution - In your main stylesheet - /includes/templates/custom/css/stylesheet.css

Look for #cartAdd (line 367) and add this:

display:none;
visibility:hidden;

Cool!!!!!! That works for me. Thanks :clap: