Hi monkeyjr
It due to the concept of this template which limits the number of characters for the intro text.
You can edit 2 files as below:
1 - /templates/ja_magz_ii/html/com_content/category/blog_item.php
Look for this snippet of code:
<?php
$rawText = strip_tags($this->item->introtext);
$frags = explode(' ', $rawText);
$max = 20;
$count = count($frags) > $max ? $max : count($frags);
$introtext = '';
for ($i=0; $i < $count; $i++) {
$introtext .= $frags[$i] . ' ';
}
echo $introtext . '...';
?>
change it to:
<?php echo $this->item->introtext; ?>
2 - /templates/ja_magz_ii/html/com_content/featured/default_item.php
Look for this code:
<?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;
?>
change it to:
<?php echo $this->item->introtext; ?>