Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to remove Product name in listing?

How to remove Product name in listing?

Views: 826

Results 1 to 5 of 5
7 Jul 2012, 8:56 PM
#1
jbtqq avatar

jbtqq

New Zenner

Join Date:
Jul 2012
Posts:
3
Plugin Contributions:
0

How to remove Product name in listing?

I was adjusting my new zencart template and I was wondering how to remove the product name while keeping the description in the listing. I tried to set Display Product Name to zero in Admin - Catalog which removes the product name as I want but at the same time it removes the product description which I actually want to keep. How can I solve this? I use zencart v1.5.0 which was installed a few days ago and a free template from picaflor-azul. For the rest I installed image handler and zen lightbox (latest version).

7 Jul 2012, 9:00 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: How to remove Product name in listing?

A link to your site woulkd help us help you.

8 Jul 2012, 6:55 AM
#3
jbtqq avatar

jbtqq

New Zenner

Join Date:
Jul 2012
Posts:
3
Plugin Contributions:
0

Re: How to remove Product name in listing?

I somewhat reluctant to put a link here but here it is. Note the remove this for the search engines:
http://www.jeroenb.nl/fossilshopREMOVETHIS/index.php?main_page=index&cPath=2_3_6

AS you can see, all the products have the same name (Ammonite) in the listing. That is what I want to remove while keeping the product description. In two (in my case the first two) of them I simply didn't enter any product name and therefore there is no product name but still a product description in the listing ; exactly what I want. However, this is not the solution I'm looking for because in the order overview you cannot see what you have ordered.

8 Jul 2012, 9:19 AM
#4
niccol avatar

niccol

Totally Zenned

Join Date:
Apr 2009
Posts:
2,138
Plugin Contributions:
1

Re: How to remove Product name in listing?

admin>>configuration>>product listing>>Display Product Name set to zero.

Or you can do a similar thing with a bit of css

.productListing-data .itemTitle{
display:none;
}
8 Jul 2012, 9:51 AM
#5
jbtqq avatar

jbtqq

New Zenner

Join Date:
Jul 2012
Posts:
3
Plugin Contributions:
0

Re: How to remove Product name in listing?

niccol:

admin>>configuration>>product listing>>Display Product Name set to zero.

Or you can do a similar thing with a bit of css

.productListing-data .itemTitle{
display:none;
}


Adjusting the .css code as you said did exactly what I want! thanks!