At the moment I am having issues with expanding category lists with the manual input for the category list plugin.
<?php
echo "<ul class='collapsCatList'>\n";
if (function_exists('collapsCat')) {
collapsCat('animate=1&catSort=ASC&expand=2&inExclude=include&inExcludeCats=places&showTopLevel=0&expandCatPost=1&showPosts=0&linkToCat=1&debug=1');
} else {
wp_get_categories('');
}
echo "</ul>\n";
?>
This is what I am currently using, any help would be strongly appreciated !