Please try change code from topic you gave to this one:
- Code: Select all
<div class="itemNavigation">
<?php if(isset($this->item->previousLink)): ?>
<a class="itemPrevious" href="<?php echo $this->item->previousLink; ?>">
<?php echo JText::_('K2_PREV'); ?>
</a>
<?php endif; ?>
<?php if(isset($this->item->nextLink)): ?>
<a class="itemNext" href="<?php echo $this->item->nextLink; ?>">
<?php echo JText::_('K2_NEXT'); ?>
<?php endif; ?>
</div>
then please go to languages/en-GB.com_k2.ini and add at the bottom
- Code: Select all
K2_PREV="Previous"
K2_NEXT="Next"
In the same way edit rest lang files in diffrent lang folders. Of course translate them to their language.