Unfortunately not, as categories without posts are already hidden.
There is a header on each category page that lists the children of that category. If there are no children, I would like this header to be hidden. This is the challenge at hand!
I guess what I am looking for might be PHP code that says IF children exist, show this header and list children. Otherwise, do nothing!
Here is the current code:
<?php if ((is_category())||(is_single())) { ?>
<h2>Categories</h2>
<?php if($parent_category->cat_name == '') { ?>
<?php wp_list_cats('child_of='.$this_category->cat_ID); ?>
<?php } else { ?>
<?php wp_list_cats('child_of='.$parent_category->cat_ID); ?>
<?php } ?>