i've recently purchased the name
meaning dictionary component for my web site. there is a commenting system included but i'd like to use jcomments instead, as for the rest of my website. i've tried to integrate substituting the comment system part with the following code.
$comments = JPATH_SITE . DS .'components' . DS . 'com_jcomments' . DS . 'jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($id, 'com_name_meaning', $title);
}
the result is the commenting form but as i submit a comment no title is stored and so there's no way to backlink to the comment.. any suggestion? how can i force getting the title?
thank you in advance