Sorry for my poor english
When using jcomments, you need to modify the sql query in file components/com_lyftenbloggie/models/lyftenbloggie.php
There is a method called _buildQuery in line 82, change the query as the following
$query = 'SELECT e.*, COUNT(c.id) AS comcount,'
.' CASE WHEN CHAR_LENGTH(e.alias) THEN CONCAT_WS(":", e.id, e.alias) ELSE e.id END as slug,'
.' CASE WHEN CHAR_LENGTH(cat.slug) THEN cat.slug ELSE 0 END as catslug'
.' FROM #__bloggies_entries AS e'
.' LEFT JOIN #__jcomments AS c ON c.object_id = e.id '
.' LEFT JOIN #__bloggies_categories AS cat ON cat.id = e.catid'
.$tags
.$where
.' GROUP BY e.id'
.' ORDER BY e.created DESC'
;
which join the table to jcomment to select correct comments.
Finally, if you are using "anemoi" theme, comment out following code at line 23
<?php if ($this->params->get('typeComments', '1') == '1') {
$comcount = ($entry->comcount)?$entry->comcount:'0';
}else{
$comcount = '0';
}
$jump = ($entry->allowComments) ? '#comment' : ''; ?>
which set you comment count to 0 when not using lyftenbloggie default comment.
use ($entry->comcount)?$entry->comcount:'0' to display the correct comment count