Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can i remove the category thumb nail image ?


Dr Dre

Recommended Posts

If I understand your post correctly, you can turn it off in Admin.

 

Admin>Configuration>Product Listing

 

Set the Display Product Image value to zero and it will not show when browsing categories.

 

- Andrea

Link to comment
Share on other sites

No problem....try Catalog>index.php

 

Way down near the bottom, look for this:

 

<td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>

 

Comment out the echo call with // so it looks like this:

 

<td align="right"><?php //echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>

 

- Andrea

Link to comment
Share on other sites

Okay. I'm not one to create those images as I don't want them displaying, so...my files may be playing a bit different than yours.

 

So...go back to the same file. Comment out that line I spoke of before AND this one.

 

Look for this near the very top of the file:

 

<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Put // in front of the word echo there and post back.

 

- Andrea

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...