[Plugin: Google Calendar Events] Pagination
-
Perhaps in a future version pagination can be included in this plugin? For a site I’m working on, we have a lot of events scheduled, and I want to give visitors access to the events info in a list, but not have them need to scroll a lot.
To paginate the events in the meantime, I’m using the jQuery plugin Pajinate. This lets visitors access a longer list of events without needing to scroll through them all.
Here’s a page with the pagination: Example events.
This is the code used on the example page:
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery('#page_container').pajinate({ items_per_page : 4, item_container_id : '.gce-list', }); }); </script> <div id="page_container" class="container"> <div class="page_navigation"></div> [google-calendar-events id="1" type="list" title="" max="100"] <div class="page_navigation"></div> </div>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘[Plugin: Google Calendar Events] Pagination’ is closed to new replies.