Hi.
i had checked your code.
The file : /components/com_k2/templates/ja_k2filter/item.php
Code :
<!-- K2 Plugins: K2BeforeDisplayContent -->
<?php echo $this->item->event->K2BeforeDisplayContent; ?>
<img src="<?php echo $this->item->image; ?>" alt="<?php $this->item->image_caption; ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
<?php if($this->item->params->get('itemImage') && !empty($this->item->image)): ?>
<!-- Item Image -->
<div class="itemImageBlock">
<span class="itemImage">
<a class="modal" rel="{handler: 'image'}" href="<?php echo $this->item->imageXLarge; ?>" title="<?php echo JText::_('K2_CLICK_TO_PREVIEW_IMAGE'); ?>">
<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
</a>
</span>
It’s because the standalone line :
<img src="<?php echo $this->item->image; ?>" alt="<?php $this->item->image_caption; ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
The image always shows up.
I moved this line.
Regards