Тестировалось на Joomla 1.5.22, joomleague 1.5.x, JComments 2.2.0.2
Сделал на примере "комментарии к отчету о матче":
1. В папке /components/com_joomleague/views/matchreport/tmpl создаем файл с именем default_jcomments.php и следующим кодом
<?php defined('_JEXEC') or die('Direct Access to this location is not allowed.');
global $mainframe;
$comments = $mainframe->getCfg('absolute_path'). '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($this->match->id, 'com_joomleague');
}
?>
2. В файле /components/com_joomleague/views/matchreport/tmpl/default.php в последнюю строчку дописываем следующий код
<?php echo $this->loadTemplate('jcomments');?>
3. Тестим