rominek
Hi,
You could do this to get first image alt text if not set intro image
File modules\mod_news_pro_gk5\tmpl\com_content\view.php
Add these code to line 234
if (!$alt_text) {
preg_match('/<img.*?alt="(.*?)".*?>/', $item['text'], $matches);
if (isset($matches[1])) {
$alt_text = $matches[1];
}
}
I already modified your site. Please check.