7 replies [Last post]
end user's picture
Offline
Joined: 01/11/2008
Juice: 1198
Was this information Helpful?

Seems I can't find an option or its not possible. I've included a screen shot of the image location.

PreviewAttachmentSize
catalog_logo.gifcatalog_logo.gif25.69 KB
lukasgottwald's picture
Offline
Joined: 04/09/2008
Juice: 47
it is possible:)

hi, i m not an advanced drupal user, but i think i am able to help u with this, go administer/categories.
find your vocabulary (lets say catalog) click "list terms" and then "edit" you will see a tick-box which will alow you to remove the category picture

bobbyg123's picture
Offline
Bug Finder
Joined: 04/18/2008
Juice: 17
Re: Remove Category image from catalog product display.

if you want to keep the category image on the parent pages but not display it on the child pages try commenting out line 889 of the uc_catalog.module (see below). It worked for me

// $output .= theme('imagecache', 'thumbnail', $catalog->image['filepath'], $catalog->name, $catalog->name, array('class' => 'category'));

end user's picture
Offline
Joined: 01/11/2008
Juice: 1198
Hi I just hid it using css

Hi

I just hid it using css for now. Seems to do the trick. The class that the images uses is "catalog"

ori
ori's picture
Offline
Joined: 05/17/2008
Juice: 48
Hi I have the same issue

but I didn't find the php code you gave there.

how can I disable it with css only on the products page?

thanks..

merch's picture
Offline
Joined: 08/26/2009
Juice: 4
Re: Hi I have the same issue

Since It wasn't ever mentioned heres some css that I used that works

.inside img.category {
display:none;
}
jugney's picture
Offline
Joined: 06/03/2008
Juice: 202
Re: Remove Category image from catalog product display.

Thanks for posting! That didn't work for me verbatim. I had to add the line

display: none

directly to img.category (in the uc_catalog.css file)

harrisben's picture
Offline
Joined: 04/17/2009
Juice: 192
Re: Re: Remove Category image from catalog product display.

It's best to add any css/php changes to your theme so that should you ever update Ubercart you don't lose your modification.