I dont think that I simple can put {{JComments:JEV_JCOMMENTS_ENABLE}} into my template override...
It isn't that easy.
This is the code I wrote to the icaevent/detail_body.php (override)
$user =& JFactory::getUser();
$user_ag = $user->getAuthorisedGroups();
$row=$this->data['row'];
$catid = $row->_catid;
$show_jcomments = (in_array('15', $user_ag) AND ($catid == "113" OR $catid == "119")) ? true : false;
$show_jcomments = (in_array('7', $user_ag) OR in_array('8', $user_ag)) ? true : false;
echo ($show_jcomments == true) ? "<div class='tgs_row jcomments'>" . $jcomments_code . "</div>" : "";
...and I'm lookicg for
$jcomments_code.
regards, Berndi