• Resolved geekhero

    (@geekhero)


    Hey, great plugin but the documentation is a little lacking, unless I am missing something. I want to paginate a simple
    <li> list within some tabs. Here is an example of the code I have tried according to your documentation.

    <div id="jpages-list">
    <ul>
    <li>test1</li>
    <li>test2</li>
    <li>test3</li>
    <li>test4</li>
    </ul>
    </div>

    How do I configure how many li items will be shown per page? If it helps, this is exactly what I am trying to accomplish. https://www.zmdcreatives.com/zmd_wp/#works It looks like they got it to work, and I am not even trying to do a gallery. Any help would be awesome! Thanks!
    https://www.ads-software.com/plugins/wp-pagination/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Kishores

    (@kishores)

    <ul id="jpages-list-custom">
    <li>test1</li>
    <li>test2</li>
    <li>test3</li>
    <li>test4</li>
    </ul>

    Please try like this. Also for changing number

    jQuery("div.holder").jPages({
            containerID : "jpages-list-custom",
            perPage : 5 // your custom number
        });

    Please check here for more details jPages

    Thread Starter geekhero

    (@geekhero)

    Ah figured it out, thanks!

    Plugin Author Kishores

    (@kishores)

    Welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Paginate simple list’ is closed to new replies.