Hi,
I found the problem; the following function is causing the issue with special characters:
if(strlen($text) > $limit_value){
$text = substr($text, 0, $limit_value) . $at_end;
}
(lines 39 and 40)
in the file mod_news_pro_gk4/gk_classes/gk.utils.php
So I have replaced that code with the code of the previous version:
if(JString::strlen($text) > $limit_value){
$text = JString::substr($text, 0, $limit_value) . $at_end;
}
and it has fixed the problem.
Can you take a look at this?
Thank you so much for your help and patience.