Dear sir,
Please go to file:
\templates\sj_imag\html\com_k2\templates\sj-theme\category_item.php
\templates\sj_imag\html\com_k2\templates\sj-theme\item.php and change code:
<?php
//Create placeholder items images
$src = $this->item->image;
if (!empty( $src)) {
$thumb_img = '<img src="'.$src.'" alt="'.$this->item->title.'" />';
} else if ($is_placehold) {
$thumb_img = yt_placehold($placehold_size['article'],$this->item->title,$this->item->title);
}
echo $thumb_img;
?>
CHANG TO=>
<?php
//Create placeholder items images
$src = $this->item->image;
if (!empty( $src)) {
$thumb_img = '<img src="'.$src.'" alt="'.$this->item->title.'" />';
}
?>
Thanks.