To display the Categories Image on the Main Page ... you would need to customize two files:
Copy the original file:
/includes/templates/template_default/tpl_index_product_list.php
To your templates and overrides directory:
/includes/templates/your_template_dir/tpl_index_product_list.php
Change the line that I have commented to the new line below it:
PHP Code:
<!-- <h1 id="productListHeading"><?php echo $breadcrumb->last(); ?></h1> -->
<h1 id="productListHeading"><?php echo zen_image(DIR_WS_IMAGES . zen_get_categories_image($current_category_id), zen_get_categories_name($current_category_id), HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT, ' align="middle"' ) . '<br />' . $breadcrumb->last(); ?></h1>
Next copy the file:
/includes/templates/template_default/tpl_index_categories.php
To your template and overrides directory:
/includes/templates/your_template_dir/tpl_index_categories.php
Change the line that I have commented out to the new line below it:
PHP Code:
<!-- <h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1> -->
<h1 id="indexCategoriesHeading"><?php echo zen_image(DIR_WS_IMAGES . zen_get_categories_image($current_category_id), zen_get_categories_name($current_category_id), HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT, ' align="middle"' ) . '<br />' . $breadcrumb->last(); ?></h1>