Hi
I fixed the problem on your site with the solution below
Open templates/ja_teline_v/html/layouts/joomla/content/item/default.php file
find and change
if ($params->get('show_intro', 0)) {
$pos = strpos($item->text, $item->introtext);
if ($pos !== false) {
$item->text = substr_replace ($item->text, '', $pos, strlen($item->introtext));
}
}
to
if ($params->get('show_intro', 0)) {
if ($item->text && $item->introtext ) {
$pos = strpos($item->text, $item->introtext);
if ($pos !== false) {
$item->text = substr_replace ($item->text, '', $pos, strlen($item->introtext));
}
}
}
Regards