Hi, I was wondering if it was possible on this page
https://www.fontanafineart.it/lo-specchio-di-venere
in addition to the title, to make the image also clickable (to the same link obviusly)
Thanks in advance
Francus
Hi, I was wondering if it was possible on this page
https://www.fontanafineart.it/lo-specchio-di-venere
in addition to the title, to make the image also clickable (to the same link obviusly)
Thanks in advance
Francus
Hi Francus,
You can open the file:
/templates/ja_space/html/com_content/categories/default_items.php
Look for this line of code:
<img src="<?php echo $item->getParams()->get('image'); ?>"/>
change it to:
<a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($item->id));?>">
<img src="<?php echo $item->getParams()->get('image'); ?>"/>
</a>
It will look like this:
Hi saguaros,
it works 100% !!
thanks a lot as usual and we can mark the thread as solved
Good evening
Francus
Glad to hear that!