JComments

Интеграция JComments в EasyCalendar

  1. Откройте файл /components/com_easycalendar/easycalendar.html.php
  2. Найдите строки:
        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);

Полезные ссылки:

 
JoomlaTune