By Mark on Tuesday, 02 February 2016
Posted in Technical Issues
Replies 1
Likes 0
Views 344
Votes 0
My comments counter on the main blog page shows "0" even though there are comments on a blog entry. When clicking the entry itself, the comment counter works.
Hi Mark,

I am sorry for the inconvenience caused. Actually this issue is already fixed internally and this will be included in the latest version.
As for your patch, please locate this file: administrator\components\com_easyblog\includes\comment\comment.php line: 111.

Change this code:

// If comments is enabled, we always treat it as built in.
if ($this->config->get('main_comment')) {
return true;
}

To this code.

// If comments is enabled, we always treat it as built in.
if ($this->config->get('comment_easyblog', 1)) {
return true;
}


Once again, I am sorry for the inconvenience caused and have a nice day.
·
Tuesday, 02 February 2016 18:23
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post