[Solved]there is no button for the next item joomla 2.5

GK User
Mon Feb 20, 2012 9:44 am
there is no button for the next item joomla 2.5,
in the standard templates ok...
User avatar
Fresh Boarder

GK User
Mon Feb 20, 2012 12:29 pm
Hi.
In Content component configuration, just try to turn on "Show Navigation" http://easycaptures.com/fs/uploaded/442/5974206516.png
User avatar
Platinum Boarder

GK User
Mon Feb 20, 2012 12:45 pm
This seems to be a bug as he tried with other templates and it worked. Try my solution:

- Open file: \templates\gk_twn2\html\com_content\article\default.php

- Find:
Code: Select all
<?php echo $this->item->event->afterDisplayContent; ?>

- Add before:
Code: Select all
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):
    echo $this->item->pagination;?>
<?php endif; ?>

Let me know if it helps.

Cheers,
User avatar
Platinum Boarder

GK User
Mon Feb 20, 2012 9:03 pm
Code: Select all
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):
    echo $this->item->pagination;?>
<?php endif; ?>


does not work

Code: Select all
<?php    echo $this->item->pagination;?>


it works
User avatar
Fresh Boarder

GK User
Mon Feb 20, 2012 9:22 pm
Code: Select all
<?php
   if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition :
      echo $this->item->pagination;?>
   <?php endif; ?>

it also works
User avatar
Fresh Boarder

GK User
Tue Feb 21, 2012 7:37 am
Yeah it must work if you enable Show Navigation like Mike has suggested.
User avatar
Platinum Boarder

GK User
Tue Feb 21, 2012 8:47 am
I have allowed , Beez5, Beez_20 - show the link , Gk_twn2 no ...
User avatar
Fresh Boarder

GK User
Tue Feb 21, 2012 9:10 am
Kubida wrote:I have allowed , Beez5, Beez_20 - show the link , Gk_twn2 no ...

Yes I have confirmed that it's a bug of TWN2 template, we will add this fix to next version of the template.

Cheers,
User avatar
Platinum Boarder

GK User
Tue Feb 21, 2012 10:02 am
thanks
User avatar
Fresh Boarder


cron