Ok so I learned that acepoll has the option to set jcomment for comments.
However jcomments are not displayed.
This makes sense because jcomment never displays unless a category is set or the tage {jcomments on} is added.
How do I get Jcomments to display on the clicktrough link from Acepoll?
edit: even found it in the code in com_acepolls/views/poll/tmpl/default.php:
$comments = $this->params->get('show_comments', '0');
if ($comments != 0) {
$jcomments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
...
if ($comments == 1 && file_exists($jcomments)) {
require_once($jcomments);
echo JComments::showComments($this->poll->id, 'com_acepolls', $this->poll->title);
}
So what is going wrong?