pagination

  • Wolfgang Fentler
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
5 years 6 months ago #118442 by Wolfgang Fentler
pagination was created by Wolfgang Fentler
hi,
could you please give me a hint on how to display the pagination on top of the events also (not only in footer line)
thx wolfgang

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

More
5 years 6 months ago #118476 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic pagination
Hello

Could you please send us the link to the page which displays events on your site? We need to look at it to see what layout you are using before guiding you further

Regards,

Tuan

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

  • Wolfgang Fentler
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
5 years 6 months ago #118485 by Wolfgang Fentler
Replied by Wolfgang Fentler on topic pagination

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

More
5 years 6 months ago #118487 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic pagination
Hi

For that, you will need to edit code in the file components/com_eventbooking/themes/default/category/timeline.php, copy this block of code to the position you want to display the pagination
Code:
if ($this->pagination->total > $this->pagination->limit) { ?> <div class="pagination"> <?php echo $this->pagination->getPagesLinks(); ?> </div> <?php }

Once the change is done, you should move the modified file to PATH_TO_TEMPLATE/com_eventbooking/category folder so that the change won't be lost when you update to future releases of the extension

Regards,

Tuan

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