Hello.
How do I make sure that in the blog section, in addition to the title, the images are also links to the article?
Thanks.
Hello.
How do I make sure that in the blog section, in addition to the title, the images are also links to the article?
Thanks.
Hi Joohmla,
You can open the \templates\ja_vitality\html\mod_articles_category\highlight.php file, line 129.
Replace the following code:
<img src="<?php echo $introImage ;?>" alt="<?php echo $item->title; ?>" />
With this code:
<a href="<?php echo $item->link; ?>">
<img src="<?php echo $introImage ;?>" alt="<?php echo $item->title; ?>" />
</a>