Keyword

After k2 10 no pagination

  • Com3elles
  • Com3elles's Avatar Topic Author
  • Offline
  • New Member
More
4 years 4 months ago #173989 by Com3elles
After k2 10 no pagination was created by Com3elles
Hello after update to k2.10 my pagination was broken ...
i only have end button but i have many other item
i check my override but no solution ... whats .....
My code
<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
	<div class="k2Pagination">
		<?php if($this->params->get('catPagination')) echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php if($this->params->get('catPaginationResults')) echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>
thanks for any help

Please Log in or Create an account to join the conversation.

More
4 years 4 months ago #174017 by JoomlaWorks
Replied by JoomlaWorks on topic After k2 10 no pagination
Either re-save your category settings (for the affected categories) or just swap with the default code for pagination:
    <!-- Pagination -->
    <?php if ($this->pagination->getPagesLinks()): ?>
    <div class="k2Pagination">
        <?php if ($this->params->get('catPagination', 1)): ?>
        <div class="k2PaginationLinks">
            <?php echo $this->pagination->getPagesLinks(); ?>
        </div>
        <?php endif; ?>
        <?php if ($this->params->get('catPaginationResults', 1)): ?>
        <div class="k2PaginationCounter">
            <?php echo $this->pagination->getPagesCounter(); ?>
        </div>
        <?php endif; ?>
    </div>
    <?php endif; ?>

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum