Answer the question
In order to leave comments, you need to log in
How to insert JComments comment counter in different modules in Joomla 3?
Comment counters and "Add comments" are displayed only in the "Category Blog" module. And I have all the information in the modules "Materials - news" and "Module - category list". How to display counters and "Add comments" in other modules? I saw the manual for php developers ( www.joomlatune.ru/jcomments-developers-manual.html) , but I don't understand - I don't know php. But I know html, css and a bit of JS. How to implement it?
Answer the question
In order to leave comments, you need to log in
hope it helps
<?php
$commentsAPI = JPATH_SITE . '/components/com_jcomments/jcomments.php';
if (file_exists($commentsAPI)) :
require_once($commentsAPI);
$total = JComments::getCommentsCount($this->item->id, 'com_content');
echo $total;
endif;
?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question