Open reilldesign opened 3 months ago
No.
I have tried the following. In a category blog override i load the Jcomment class
JLoader::register('JComments', JPATH_SITE . '/components/com_jcomments/jcomments.php');
and echo the individual comments after the intro text.
echo $this->loadTemplate('item'); echo JComments::showComments($this->item->id, 'com_content', $this->item->title, true);
This works very well so far. However, it is not possible to write a new comment per article, because the submit button tries to send for all fields, even the empty ones. Would such an override be a good option? is there a way to link the submit button with the corresponding articles?
Is it possible to display all article comments already in the catgory blog view to create a social wall?