Hi tomoe,
On your server:
1. Open templatesja_lenshtmlcom_k2ja_lenscategory_item.php
2. Replace lines:
<dl class="article-info">
<?php if($this->item->params->get('catItemCategory')): ?>
<!-- Item category name -->
<dd class="category-name">
<strong><?php echo JText::_('K2_LENS_PUBLISHED_IN'); ?>: </strong>
<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
</dd>
<?php endif; ?>
with lines
<?php if(
$this->item->params->get('catItemTags') ||
$this->item->params->get('catItemAttachments')
): ?>
<dl class="article-info">
<!-- Item category name -->
<dd class="category-name">
<span><strong><?php echo "Taged in:"; ?></strong></span>
<?php foreach ($this->item->tags as $tag): ?>
<span><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></span>
<?php endforeach; ?>
</dd>
<?php endif; ?>
Then Save.
See my snapshot.
Regards,
—
Leo