JComments

Интеграция JComments в календарь событий JCalPro

JCal Pro - очень функциональный календарь событий для Joomla, по возможностям похожий на Google Календарь. Множество настроек, грамотная работа с событими, удобная установка шаблонов и т.д. После интеграции посетители сайта смогут оставлять комментарии к записям в календаре.

  1. Откройте файл /components/com_jcalpro/themes/default/theme.php
  2. Найдите строчки:
        if ( $noduration ) template_extract_block($template_event_view, 'duration_row');
     
        echo template_eval($template_event_view, $params);
     
        endtable();
     
        echo "<br />";
    и замените их на:
        if ( $noduration ) template_extract_block($template_event_view, 'duration_row');
     
        echo template_eval($template_event_view, $params);
     
        endtable();
     
        global $mosConfig_absolute_path;
        $comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php';
        if (file_exists($comments)) {
          require_once($comments);
          echo JComments::showComments($event->extid, 'com_jcalpro', $event->title);
        }
     
        echo "<br />";

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

 
JoomlaTune