Remove Picture from Category Pages

i set up cs cart to show category pictures on the home page



[url]国产无遮挡又黄又大又爽,成 人 网 站 观 看在线,国产青榴视频a片在线观看,波多野结av衣东京热无码专区



I would however like to remove the picture from the actual category pages as it looks funny.



[url]国产无遮挡又黄又大又爽,成 人 网 站 观 看在线,国产青榴视频a片在线观看,波多野结av衣东京热无码专区



How can i get the picture not to show on these pages. I am newbie so please be specific if possible. Thanks in advance

To take a guess I would modify:



skins/your-skin/customer/views/categories/view.tpl



I would either comment out or remove:


{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}




I don’t have my categories set up like this so I can’t test it, but give it a try and see what happens.



Brandon

that was it …you rock

thanks…didn’t know for sure which file to edit…

it work great.



but if you set up the subcat_thumbs this addons, you need remove from skins/your_current_skins/customer/addons/subcat_thumbs/hooks/categories/view.override.tpl



remove those code then it will work great.



{if $category_data.main_pair}


{include file="common_templates/image.tpl" show_detailed_link=true images=$category_data.main_pair object_type="detailed_category" no_ids=true class="cm-thumbnails" show_thumbnail="Y" image_width=$settings.Thumbnails.category_details_thumbnail_width image_height=$settings.Thumbnails.category_details_thumbnail_height}

{if $category_data.main_pair.detailed_id}
{include file="common_templates/previewer.tpl"}
{/if}
{/if}

hope you can work out it.

kevin