Shoe Prev and Next button at top of article - Joomla! Forum - community, help and support
the title says all. article navigation (prev/next) button show @ top of page @ bottom. not sure how this?
you need create output override template in duplicate php code contains pagination. here general information output overrides: http://docs.joomla.org/how_to_override_ ... omla!_core
the beez5 template comes joomla 2.5 has example how output of content component overridden. file templates/beez5/html/com_content/article/default.php. need copy following lines bottom suitable spot in top part:
the beez5 template comes joomla 2.5 has example how output of content component overridden. file templates/beez5/html/com_content/article/default.php. need copy following lines bottom suitable spot in top part:
code: select all
<?php
if (!empty($this->item->pagination) , $this->item->pagination , $this->item->paginationposition , $this->item->paginationrelative):
echo $this->item->pagination;?>
<?php endif; ?>
Comments
Post a Comment