1. Open /plugins/content/jcomments/jcomments.php
2. Find code:
if (isset($article->text)) {
if ($this->params->get('links_position', 1) == 1) {
$article->introtext = $article->introtext . $article->text;
} else {
$article->introtext = $article->text . $article->introtext;
}
}
replace with
if (isset($article->text)) {
if (($view == 'article') && strpos($originalText, '{jcomments}') !== false) {
$originalText = str_replace('{jcomments}', $article->text, $originalText);
} else {
$article->introtext = str_replace('{jcomments}', '', $article->introtext);
if ($this->params->get('links_position', 1) == 1) {
$article->introtext = $article->introtext . $article->text;
} else {
$article->introtext = $article->text . $article->introtext;
}
}
}
3. Open plugin Content - JComments parameters and change Event from onAfterDisplayContent to onPrepareContent