Ответ: Easy Galery: добавление комментариев http://www.joomlatune.ru/jcomments-integration-guide.html Попробуй это внедрить, если немного кодить умеешь
Код (PHP): HTML_easygallery::printNavigation($row, $params); global $mosConfig_absolute_path; $comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php'; if ($params->get('comments') && file_exists($comments)) { require_once($comments); echo JComments::showComments($row->id, 'com_easygallery', $row->name); } Не работает из за if ($params->get('comments') && file_exists($comments)) { Если заменить на if (file_exists($comments)) { или вовсе вытащить код Код (PHP): require_once($comments); echo JComments::showComments($row->id, 'com_easygallery', $row->name); из if - заработает