My category description code absorbs the sub-categories which are supposedly listed below. To test this, I have created a table in my category description with a border of 1px. When I load the page, the table is surrounding the sub-categories listed below. I have checked the code in tpl_index_categories.php and I can't see why this should be happening:
<?php
// categories_description
if ($current_categories_description != '') {
?>
<div id="categoryDescription" class="catDescContent"><?php echo $current_categories_description; ?></div>
<?php } // categories_description ?>
<!-- BOF: Display grid of available sub-categories, if any -->
<?php
if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
// do nothing
} else {
Does not happen on main page, but when I display a category with sub-categories listed below, the problem occurs. How do I avoid this?



