Dear tr_sa,
Please go to file: \templates\sj_wavenew\html\com_k2\templates\listing-one\item.php and change code:
<div class="item-images">
<?php
$src_rela = $item->imageLarge;
$title_rela= K2HelperUtilities::cleanHtml($item->title);
if($this->item->params->get('itemRelatedImageSize')):
//Create placeholder items images
if (!empty( $src_rela)) {
$thumb_img = '<img src="'.$src_rela.'" alt="'.$title_rela.'" />';
} else if ($is_placehold) {
$thumb_img = yt_placehold($placehold_size['related_items'],$this->item->title);
}
echo $thumb_img;
endif;
?>
</div>
EDIT TO=>
<div class="item-images">
<a href="<?php echo $item->link ?>">
<?php
$src_rela = $item->imageLarge;
$title_rela= K2HelperUtilities::cleanHtml($item->title);
if($this->item->params->get('itemRelatedImageSize')):
//Create placeholder items images
if (!empty( $src_rela)) {
$thumb_img = '<img src="'.$src_rela.'" alt="'.$title_rela.'" />';
} else if ($is_placehold) {
$thumb_img = yt_placehold($placehold_size['related_items'],$this->item->title);
}
echo $thumb_img;
endif;
?>
</a>
</div>
Thanks.