Tags

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Wed Apr 02, 2014 3:12 pm
Reply with quote
Report this post
Hello everybody,
how can I move tags position inside k2 articles from left side to the bottom side?

Thank you!
P.
User avatar
Junior Boarder

teitbite
Wed Apr 02, 2014 9:52 pm
Reply with quote
Report this post
Hi

please edit file /html/com_k2/tempaltes/default/item.php and locate a code like this:

Code: Select all
                  <?php if($params->get('itemTags') && count($this->item->tags)): ?>
                  <div class="itemTagsBlock">
                           <p><?php echo JText::_('K2_TAGGED_UNDER'); ?></p>
                           <?php foreach ($this->item->tags as $tag): ?>
                           <a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?>, </a>
                           <?php endforeach; ?>
                  </div>
                  <?php endif; ?>


cut it from the place where You will find it (around line 139) and paste it wherever You want in the bottom part ot the code.
User avatar
Moderator

GK User
Thu Apr 03, 2014 8:04 am
Reply with quote
Report this post
Thank you!
User avatar
Junior Boarder


cron