smalir
Hi
Open default.php
find this
<div itemprop="articleBody">
<?php if ($params->get('show_intro', 0)) : ?>
<div class="lead" class="article-intro" itemprop="description">
<?php echo $this->item->introtext; ?>
</div>
<?php endif; ?>
<?php echo str_replace(trim(strip_tags($this->item->introtext)), '', $this->item->text); ?>
</div>
Replace it with
<div itemprop="articleBody">
<?php // Content is generated by content plugin event "onContentBeforeDisplay" ?>
<?php echo $this->item->event->beforeDisplayContent; ?>
<?php echo $this->item->text; ?>
</div>
I applied it on your site.
Correct way to add images in via Article images and links options.
Regards