This is the code that is generating the list items.
CODE
<MTTopLevelCategories>
<MTSubCatIsFirst>
<ul class="widget-list">
</MTSubCatIsFirst>
<MTIfNonZero tag="MTCategoryCount">
<li class="widget-list-item"><a href="<$MTCategoryArchiveLink$>"
<MTIfNonEmpty tag="MTCategoryDescription"> title="
<$MTCategoryDescription$>"
</MTIfNonEmpty>>
<$MTCategoryLabel$> (<$MTCategoryCount$>)</a>
<MTElse>
<li class="widget-list-item"><$MTCategoryLabel$>
</MTIfNonZero>
<MTSubCatsRecurse>
</li>
<MTSubCatIsLast>
</ul>
</MTSubCatIsLast>
</MTTopLevelCategories>
<MTSubCatIsFirst>
<ul class="widget-list">
</MTSubCatIsFirst>
<MTIfNonZero tag="MTCategoryCount">
<li class="widget-list-item"><a href="<$MTCategoryArchiveLink$>"
<MTIfNonEmpty tag="MTCategoryDescription"> title="
<$MTCategoryDescription$>"
</MTIfNonEmpty>>
<$MTCategoryLabel$> (<$MTCategoryCount$>)</a>
<MTElse>
<li class="widget-list-item"><$MTCategoryLabel$>
</MTIfNonZero>
<MTSubCatsRecurse>
</li>
<MTSubCatIsLast>
</ul>
</MTSubCatIsLast>
</MTTopLevelCategories>
I'm guessing that I need to do something like put the MTCategoryCount tag in an MTIf, with a value of zero. I've tried a few things, and have looked at the online Help. I'm sure it's a simple thing to do, but nothing has worked. Any ideas?
Also, in the above code, what is the MTIfNonEmpty tag (in the list (li) tag actually doing? It seems to refer to the Description field of the categories. But the list is always rendered the same whether or not it's empty.
Thank you!