Hi
You can try with my tweak here:
- Copy the file: ROOT/modules/mod_jasidenews/tmpl/default.php
and paste into this directory: ROOT/templates/t3_bs3_blank/html/mod_jasidenews/default.php (create directory if it doesn’t exist)
This helps to override the module for template so if you update module in future, this change will not be affected.
-
In case that you already have above file in template folder, just open it and look for this code:
<?php if( $showimage ): ?>
<?php echo $helper->renderImage ($item, $params, $descMaxChars, $iwidth, $iheight ); ?>
<?php endif; ?>
replace it with:
<?php if( $showimage ): ?>
<a href="<?php echo $item->link; ?>">
<?php echo $helper->renderImage ($item, $params, $descMaxChars, $iwidth, $iheight ); ?>
</a>
<?php endif; ?>