I was wondering how to include the category descriptions below the categories and sub-categories. For my site at:
http://directorylist.info , I tried editing the main.tpl, adding {description} at the end of the category string line. It shows correctly on the homepage, but when clicking on a category that contains sub-categories, the main category description shows below each of the sub-categories instead of the actual sub-category description.
After:
{if ($smarty.foreach.categs.iteration mod $cats_per_col eq 1 and $cats_per_col gt 1) or $smarty.foreach.categs.first}<td valign="top" width="33%">{/if}
What I wrote was:
<h3>{$cat.TITLE|escape}{if $smarty.const.CATS_COUNT} <span class="count">({$cat.COUNT})</span>{/if}
</h3>{description}
I assume that the first bit of code is what needs to be changed so that the correct description shows for each category and sub-category, but I am not sure what to change.
I think it would be useful to show not just the category links, but their descriptions as well.
Anyone? p.s. I deleted the {description} line from my current code since it wasn't working properly.