p.s.
I suggest in article view displace "movie box" from bottom to place before Tags and Ratings....
To do this edit: templates/gk_gamenews\html\com_k2\templates\default\item.php
Copy whole from line 279 to 294
- Code: Select all
<?php if($params->get('itemVideo') && !empty($this->item->video)): ?>
<div class="itemVideoBlock" id="itemVideoAnchor">
<h3><?php echo JText::_('K2_MEDIA'); ?></h3>
<?php if($this->item->videoType=='embedded'): ?>
<div class="itemVideoEmbedded"> <?php echo $this->item->video; ?> </div>
<?php else: ?>
<span class="itemVideo"><?php echo $this->item->video; ?></span>
<?php endif; ?>
<?php if($params->get('itemVideoCaption') && !empty($this->item->video_caption)): ?>
<span class="itemVideoCaption"><?php echo $this->item->video_caption; ?></span>
<?php endif; ?>
<?php if($params->get('itemVideoCredits') && !empty($this->item->video_credits)): ?>
<span class="itemVideoCredits"><?php echo $this->item->video_credits; ?></span>
<?php endif; ?>
</div>
<?php endif; ?>
and put in line ~128