Jump to content

Does anyone know how to get rid of the thumbnail image


Recommended Posts

you must edit template (.tpl) file in your theme directory.

 

so, if you dont want to show images, go to your theme directory and open category.tpl file

 

if you're using default template, or if you aren't, try to find code similar to this one:

 

  {if $subcategory.id_image}
   <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
  {else}
   <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
  {/if}

 

and remove it. Save the file and refresh the page.

 

remember, that in some cases you must turn on force compilation (tutorial) to see any changes in template (after edit)

Link to comment
Share on other sites

×
×
  • Create New...