Quote Originally Posted by carlwhat View Post
oh my....

saving a database query?

in YOUR_TEMPLATE/templates/tpl_index_categories.php

one can find the following code and make said change:

PHP Code:
//from
<div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES $categories_image''SUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>

//to
<div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES $categories_image$current_categories_nameSUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>

in bootstrap:

PHP Code:
//from
    <div id="indexCategories-categoryImage" class="categoryImage">
        <?php echo zen_image(DIR_WS_IMAGES $categories_image''SUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
    </div>
//to
    <div id="indexCategories-categoryImage" class="categoryImage">
        <?php echo zen_image(DIR_WS_IMAGES $categories_image$current_categories_nameSUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
    </div>
best.
Thanks Carl. It worked perfectly. In my particular case, I made the changes in YOUR_TEMPLATE/templates/tpl_index_product_list.php.