Так, описание модификации для Joomla 1.0 (тестировал на 1.0.15, но будет работать и на более младших версиях):
1. Открываем файл /components/com_content/content.html.php
2. Находим в нем код:
<tr>
<td colspan="2">
<?php
// Displays listing of Categories
if ( ( ( count( $other_categories ) > 1 ) || ( count( $other_categories ) < 2 && count( $items ) < 1 ) ) ) {
if ( ( $params->get( 'type' ) == 'category' ) && $params->get( 'other_cat' ) ) {
HTML_content::showCategories( $params, $items, $gid, $other_categories, $catid, $id, $Itemid );
}
if ( ( $params->get( 'type' ) == 'section' ) && $params->get( 'other_cat_section' ) ) {
HTML_content::showCategories( $params, $items, $gid, $other_categories, $catid, $id, $Itemid );
}
}
?>
</td>
</tr>
и добавляем перед ним:
<?php
if ($catid > 0) {
global $mainframe;
$comments = $mainframe->getCfg('absolute_path') . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
?>
<tr>
<td colspan="2">
<?php
require_once($comments);
echo JComments::showComments($title->id, 'com_content_category', $title->name);
?>
</td>
</tr>
<?php
}
}
?>
3. Скачиваем приаттаченный файл, извлекаем из архива файл com_content_category.plugin.php и помещаем его в директорию /components/com_jcomments/plugins/
Важно: данная модификация предназначена только для Joomla 1.0, на Joomla 1.5 работать не будет.
p.s. Данная интеграция создана благодаря спонсорской помощи lenchik37, за что ему персональное спасибо!