hi all,
i've been using till now groupjive and jcomments with this integration:
//integration jcomments//
global $mainframe;
$comments = $mainframe->getCfg('absolute_path') . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
$comments = JComments::showComments($d->id, 'com_groupjive', $d->subject);
$_GJ_TEMPLATES->addContent($comments, 'center');
}
//end integration//
till last groupjive update to version 1.8.5 everything worked fine. but now the module gives a wrong link. it shows correctly the messages but as i click on the post it does not take to the post but to the category page..
i get this link:
http://www.mywebsite/index.php?option=com_groupjive&task=showfullmessage&idm=*myitemnumber*&groupid=*mygroupid*&Itemid=100283#comment-564
instead of:
http://www.mywebsite/index.php?option=com_groupjive&action=gj.core.bulletin.showfullmessage&idm=*myitemnumber*&groupid=*mygroupid*&Itemid=#comment-564
is there a way to solve? thank you!