Make pagination show on both top and bottom of category - Joomla! Forum - community, help and support
hi guys , girls,
how make pagination show on both top , bottom of category ?
hope can me
how make pagination show on both top , bottom of category ?
hope can me
you'll want output override, updating joomla doesn't accidentally write on changes.
read on how overrides.
this code appears @ line 177 in file /components/com_content/views/category/tmpl/default_articles.php:
read on how overrides.
this code appears @ line 177 in file /components/com_content/views/category/tmpl/default_articles.php:
code: select all
<?php // add pagination links ?>
<?php if (!empty($this->items)) : ?>
<?php if (($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?>
<div class="pagination">
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
<p class="counter">
<?php echo $this->pagination->getpagescounter(); ?>
</p>
<?php endif; ?>
<?php echo $this->pagination->getpageslinks(); ?>
</div>
<?php endif; ?>
Comments
Post a Comment