
Originally Posted by
jettrue
open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php and change:
Code:
echo '<a id="descSubLink" href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $cPath) . '#descSub" >' . CATEGORIES_SUB_TEXT . '</a>';
to this:
Code:
echo '<a id="descSubLink" href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $cPath) . '#descSub" >' . CATEGORIES_SUB_TEXT . '</a></div>';
Do the exact same thing in includes/templates/YOUR_TEMPLATE/templates/tpl_index_index_categories.php
Heathenmagic
Sorry, I made an error in the above code.
Just replace that whole chunk, from <?php // categories_description
to
<?php } // categories_description ?> with this (in both files):
Code:
<?php
// categories_description
if ($current_categories_description != '') {
?>
<div id="indexProductListCatDescription" class="content"><?php echo $current_categories_description . '</div>';
}
if ($current_categories_description_sub != '') {
echo '<a id="descSubLink" href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $cPath) . '#descSub" >' . CATEGORIES_SUB_TEXT . '</a>';
?>
<?php } // categories_description ?>
Bookmarks