adamberrington The issue with the article image still not opening the whole article is still not resolved though. Do you have any ideas for this please?
You can try change this around line 36 in /templates/ja_smashboard/html/com_content/featured/default_item.php which would enable to get the image to also redirect to specific article :
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<div class="item-image-wrap">
<?php $imgfloat = (empty($images->float_intro)) ? $params->get('float_intro') : $images->float_intro; ?>
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img
<?php if ($images->image_intro_caption):
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_intro_caption) .'"';
endif; ?>
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" itemprop="thumbnailUrl" />
</div>
to
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<div class="item-image-wrap">
<?php $imgfloat = (empty($images->float_intro)) ? $params->get('float_intro') : $images->float_intro; ?>
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <a class="article-link" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>"> <img
<?php if ($images->image_intro_caption):
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_intro_caption) .'"';
endif; ?>
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" itemprop="thumbnailUrl" />
</a></div>
Would suggest to take backup of your current file before performing aforesaid steps, in case rollback required whilst facing any issues e.t.c and also ensure to clear your browser cache if changes dont reflect