Hi,
I had a similar problem, and just fixed it by using the code below:
function dsq_comments_text($comment_text) {
global $post;
if ( dsq_can_replace() ) {
return ‘<span class=”dsq-postid” rel=”‘.htmlspecialchars(dsq_identifier_for_post($post)).'”>’ . $post->comment_count . ‘</span>’;
} else {
return $comment_text;
}
}
This works ok, i.e. displays the number of counts. However, I am getting 0 comments, event though I have several comments. I haven’t found a fix to this yet. But it seems it will at least get you through your problem.