Интеграция JComments в EasyCalendar
|
- Откройте файл /components/com_easycalendar/easycalendar.html.php
- Найдите строки:
echo '</table>';
mosHTML::BackButton($params);
и замените их на следующий код:
echo '</table>';
global $mosConfig_absolute_path;
$comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($row->id, 'com_easycalendar', $row->name);
}
mosHTML::BackButton($params);
Полезные ссылки:
|