9 replies [Last post]
doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Was this information Helpful?

Hello

I could swear i saw an option for this once.
But i can't find it now (if there really is one).

I would like to stop showing the parent term "icon" - the one that appears on the upper right corner of every product grid.

netprojects's picture
Offline
Joined: 10/21/2008
Juice: 2
Category image

Hi,

I believe you add or remove that image in the category, term - here:

/admin/content/taxonomy/edit/term/

Hope that helps

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
No, that doesnt help I want

No, that doesnt help Smiling

I want the category terms to have images, i just dont want them to show other than in category root pages.

Alaska's picture
Offline
Joined: 10/16/2007
Juice: 1433
Removing Small Catalog Icon

Find the uc_catalog.css file. On or about line 3 under img.category add display:none;

That should take care of removing the small icon.

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Re: Removing Small Catalog Icon

> Find the uc_catalog.css file. On or about line 3 under img.category add display:none;

Thanks Alaska, this worked.

ManuMendoza's picture
Offline
Joined: 11/27/2008
Juice: 2
Re: Removing Small Catalog Icon

You can also override your theme's css class by adding:

img.category{
display: none;
}

to your theme's style.css file, avoiding touch the module file.

Best Regards.
www.alfarohats.com

haysuess's picture
Offline
Joined: 07/07/2008
Juice: 299
Re: Re: Removing Small Catalog Icon

I am pretty sure I tried that manu, and it removed the category image from the root page as well. I think the other css only takes it off the correct page.

dontpanic's picture
Offline
Joined: 04/05/2009
Juice: 40
Re: Re: Removing Small Catalog Icon

This worked for me. catalog thumbnails no longer display on product grid page.

and the images are still on the main catalog page.

Alaska's picture
Offline
Joined: 10/16/2007
Juice: 1433
Icon

Glad that it worked for you. Did the same on this end.

Now working on hacking the cart files to remove all of the subtotals, price, qty, etc. i.e. there is a need to only use the cart and catalog as a order device. Prices and discounts will be applied when the order is received. It is a way to keep prices non published and only available to select wholesalers.

So far so good, but it will not be compatible with a version newer than 1.6 as new files will over write the mods. But usually do not upgrade as there is always the chance of something that did work will not. Just seemed a bit easier than trying to over ride with a hook which I know very little about.

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Re: Icon

I suggest you create a different thread about that subject and we should all comment on it.