wp_list_comments() not working
Did you try <?php comments_template(); ?>
in single.php? You seem to imply in your comment above that you were doing something like <?php include('comments.php')?>
This won't work, because the comments haven't been queried from the database--comments_template()
does that, then includes comments.php
in your theme root.
Does that help?