Hi + thanks,
great to see that there will be a solution in the next update.
In the meantime, I solved it with a few lines of jQuery:
$("a.commentCount").each(function() {
var link = $(this).attr("href");
$(this).attr("href", link + '#comments');
});
Thanks again,
HM