Hide catagory images on catagory pages?

I want catagory images to appear as thumbnails for each catagory but when your on the catagory page I don’t want it to appear.



Is this possible?

I have the exact same question. I searched with no luck. Any Ideas?

[quote name=‘ckad79’]I want catagory images to appear as thumbnails for each catagory but when your on the catagory page I don’t want it to appear.



Is this possible?[/QUOTE]



edit the views/categories/view.tpl file. Find the image and remove it.

Find this code in view.tpl & delete or comment out;



{if $category_data.main_pair}



{include file=“common_templates/image.tpl” show_detailed_link=true images=$category_data.main_pair object_type=“category” no_ids=true class=“cm-thumbnails”}





{if $category_data.main_pair.detailed_id}

{include file=“common_templates/previewer.tpl”}

{/if}



{/if}

[quote name=‘David’]Find this code in view.tpl & delete or comment out;



{if $category_data.main_pair}



{include file=“common_templates/image.tpl” show_detailed_link=true images=$category_data.main_pair object_type=“category” no_ids=true class=“cm-thumbnails”}





{if $category_data.main_pair.detailed_id}

{include file=“common_templates/previewer.tpl”}

{/if}



{/if}[/QUOTE]



That is the ticket! works perfect.

To comment out, put at the end of the code. Anything between is not shown.

Thank you.