- Posts: 23
- Thank you received: 1
pagination
- Wolfgang Fentler
- Topic Author
- Offline
- Junior Member
-
Less
More
6 years 2 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
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.
- Tuan Pham Ngoc
- Offline
- Administrator
-
6 years 2 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
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
-
Less
More
- Posts: 23
- Thank you received: 1
6 years 2 months ago #118485
by Wolfgang Fentler
Replied by Wolfgang Fentler on topic pagination
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
6 years 1 month 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
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
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.
Support
Documentation
Information
Copyright © 2024 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.