Well, after toying around for awhile, i managed to get it partially working. Perhaps someone here can help me the rest of the way. You can comment on events properly by placing this code:
global $mosConfig_absolute_path;
$comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($this->evid, 'com_jevents', $this->processField("summary",""));
}
Into the details.php file for your calendar theme, (located in components/com_jevents/views/(Your Template Name)/icalevent/tmpl
However, while we can comment on these, and it is correctly associating the comments to the events, I cannot get the jcomments module to pull up the title of the event when commenting. There is something wrong with this field:
$this->processField("summary","")
I have tried probably 100 different variables hoping I could pull this up, but to no avail. The best I was able to muster was this, and a few other variables, which didn't show the event title properly, but didn't throw up errors, either. Can anyone help with this?