Hi rikaryo
You can achieve that in JA Event Camp template, try this tweak:
1/ Go to file: /templates/ja_eventcamp/html/com_content/category/blog_item.php
2/ At approx line 68:
<div class="item-intro">
<?php echo $this->item->introtext; ?>
</div>
change it to:
<div class="item-intro">
<?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 . '...';
?>
</div>