
Originally Posted by
ALiepinieks
good question, i'm not sure.
i looked at the PHP for the default template (includes\templates\YOURTEMPLATE\templates\tpl_index_product_list.php) and it doesn't seem to restrict the image based on the number of product records, however the second if statement below was curious to me:
<?php
if (PRODUCT_LIST_CATEGORIES_IMAGE_STATUS == 'true') {
// categories_image
if ($categories_image = zen_get_categories_image($current_category_id)) {
?>
<div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT); ?></div>
<?php
}
} // categories_image
?>
perhaps you can try specifying/uploading your category image again to see if it kicks in? if not, add a product to this category, maybe you're right and it is based on records being available.
andrejs