Hi abcorp,
I have updated the /templates/ja_magz_ii/html/com_content/featured/default_item.php file, line 83:
Replace this:
<section class="article-intro clearfix" itemprop="articleBody">
<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php if ($params->get('show_intro')) : ?>
<?php
$this->item->introtext = substr(strip_tags($this->item->introtext), 0, 200);
$this->item->introtext = substr($this->item->introtext, 0, strrpos($this->item->introtext, ' ')) . " ...";
echo $this->item->introtext;
?>
<?php endif; ?>
</section>
With new code:
<section class="article-intro clearfix" itemprop="articleBody">
<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php if ($params->get('show_intro')) : ?>
<?php
$introtext = $this->item->introtext;
$max_words = 20;
// Split the intro text by spaces
$frags = explode(' ', $introtext);
// Check if the intro text exceeds the max words limit
if (count($frags) > $max_words) {
// Keep only the first $max_words words
$introtext = implode(' ', array_slice($frags, 0, $max_words)) . '...';
}
echo $introtext;
?>
<?php endif; ?>
</section>