Hi mikeaxle2011,
You can try as following to get rid of the function for the article layout
open the file of templatesja_blazeshtmlcom_contentarticledefault.php you looking for this block of code and comment it out or remove it
[PHP]
<?php
//get images
$regex = ‘#<img[^>]*>#’;
$image = ”;
if (preg_match ($regex, $this->item->text, $matches)) {
$image = $matches[0];
$this->item->text = str_replace ($image, ”, $this->item->text);
}
?>
<?php if ($image) : ?>
<div class=”article-image”>
<?php echo $image ?>
</div>
<?php endif; ?>
[/PHP]
Do the same for those below files if you also want to remove the function for the category and feature layout
templatesja_blazeshtmlcom_contentcategoryblog_item.php,
templatesja_blazeshtmlcom_contentfeatureddefault_item.php
I hope it help all 🙂