I am using the older version of Groupjive and the latest version of JComments and I tried this, but it isn't working. The code in my groupjive.html.php file looks like this:
$tmpl->addVar( 'showfullmessage', 'ITEMID', $Itemid);
$_GJ_TEMPLATES->addContent($tmpl->getParsedTemplate( 'showfullmessage' ), 'center');
global $mainframe;
$comments = $mainframe->getCfg('absolute_path') . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
$comments = JComments::showComments($d->id, 'com_groupjive', $d->subject);
$_GJ_TEMPLATES->addContent($comments, 'center');
}
}
function inactive(&$rows, $group) {
I included some code before and after the suggested code you gave.
Did I do it correctly?
I am not getting any syntax error messages or anything, just the comments box is not showing up when I view the group.
I am using Joomla 1.5.10.
Thanks.