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 go to the Dashboard > Open category/blog menu item > Blog layout tab then enable the Linked Intro Image option.

      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> 
      Write a Reply...
      You need to Login to view replies.