By Theo on Monday, 21 April 2014
Posted in Technical Issues
Replies 1
Likes 0
Views 530
Votes 0
I like to turn off the link on the image.
Hello Theo,

You can remove that link from this file -> JoomlaFolder\components\com_easyblog\themes\default\blog.item.php
LINE 64 until 69

<!-- Blog Image -->
<?php if( $row->getImage() && $this->getParam( 'blogimage_frontpage') ){ ?>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id='.$row->id); ?>" title="<?php echo $this->escape( $row->title );?>" class="blog-image float-l mrm mbm">
<img src="<?php echo $row->getImage()->getSource( 'frontpage' );?>" alt="<?php echo $this->escape( $row->title );?>" />
</a>
<?php } ?>



Replace with


<!-- Blog Image -->
<?php if( $row->getImage() && $this->getParam( 'blogimage_frontpage') ){ ?>
<a href="#" title="<?php echo $this->escape( $row->title );?>" class="blog-image float-l mrm mbm">
<img src="<?php echo $row->getImage()->getSource( 'frontpage' );?>" alt="<?php echo $this->escape( $row->title );?>" />
</a>
<?php } ?>

Hope this help.
·
Monday, 21 April 2014 21:58
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post