Linking Category Blog Intro Image to Full Article

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Mar 09, 2015 10:07 pm
Reply with quote
Report this post
Hello,
I want to link my intro images in category blog to full article, but I cant find this option in category blog settings. I suppose there is some code editing needed. Can you halp me with that?
My web with category blog when I want to link intro images: http://fvu.aku.sk/fotogaleria/fotogaleria.html
Thanks.
User avatar
Junior Boarder

teitbite
Wed Mar 11, 2015 12:14 pm
Reply with quote
Report this post
Hi

Try edit /html/com_content/category/blog_item.php and replace this:

Code: Select all
      <img
         <?php if ($images->image_intro_caption):
            echo 'class="caption"'.' title="' .$images->image_intro_caption .'"';
         endif; ?>
         <?php if (!empty($images->image_intro)):?>
            style="float:<?php echo  $params->get('float_intro') ?>"
         <?php else: ?>
            style="float:<?php echo  $images->float_intro ?>"
         <?php endif; ?>
         src="<?php echo $images->image_intro; ?>" alt="<?php echo $images->image_intro_alt; ?>"/>


to this:

Code: Select all
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)); ?>">
      <img
         <?php if ($images->image_intro_caption):
            echo 'class="caption"'.' title="' .$images->image_intro_caption .'"';
         endif; ?>
         <?php if (!empty($images->image_intro)):?>
            style="float:<?php echo  $params->get('float_intro') ?>"
         <?php else: ?>
            style="float:<?php echo  $images->float_intro ?>"
         <?php endif; ?>
         src="<?php echo $images->image_intro; ?>" alt="<?php echo $images->image_intro_alt; ?>"/>
</a>
User avatar
Moderator

GK User
Fri Mar 20, 2015 1:39 pm
Reply with quote
Report this post
It works! Thanks a lot.
User avatar
Junior Boarder


cron