Yesterday one of JComments users sent me Mosets Tree 2.2.3 and we have updated integration manual on site. You have to make following changes:
1. Open file /components/com_mtree/templates/kinabalu/page_listing.tpl.php (where <b>kinabalu</b> is the name of used template)
2. Find the line:
if ($this->mt_show_review) include $this->loadTemplate( 'sub_reviews.tpl.php' );
and replace with:
$comments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($this->link->link_id, 'com_mtree', $this->link->link_name);
}
Current JComments version already contain actual plugin to build correct links to Mosets objects. So after these changes all must work without any tricks.