I'm using Scriptygoddess's show/hide category script. I want to show all categories EXCEPT the "top" category (because this category is there only to keep one entry at top at all times.) I have the MTEntriesExCat plugin installed, but that still lists the "top" category, the only change is that it no longer lists the entry that is in there, it now lists the entries from the other category. I also tried the MTEntries show category thing, where I put the names of the categories I want to show and leave out the category I don't want to show. That doesn't work at all. Can someone help? Here is the code below that i'm using for the show/hide categories script from scriptygoddes.


CODE
<?
$layernum = 200;
?>
<MTCategories>
<span id="click<? echo $layernum; ?>"><a href="<$MTCategoryArchiveLink$>" onclick="showMoreCat(<? echo $layernum; ?>,'<$MTCategoryArchiveLink$>');return false;"><b>+ <$MTCategoryLabel$> (<$MTCategoryCount$>)</b></a><br></span>
<div id="hide<? echo $layernum; ?>" style="display: none">
<a href="#" onclick="showMoreCat(<? echo $layernum; ?>,0);return true;">
<b>+ <$MTCategoryLabel$></b></a><br>
<MTEntriesExCat category="top">
<a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a> ::
</MTEntriesExCat>
<a href="#" onclick="showMoreCat(<? echo $layernum; ?>,0);return true;">
<b><br>close list</b></a></div>
<?
$layernum++;
?>
</MTCategories>