Support » Plugin: jPages pagination for WordPress » Paginate multiple tabs

  • Resolved zmd

    (@zmd)


    Hi,
    I have recently activated your plugin. I am using the plugin to create pagination of different galleries within tabs. Few questions as below-
    1. How do I limit the number of galleries to show in each page?
    2. When I click on Page 2, no galleries are displayed. When I click on Page 3, the remaining four galleries will show. Similarly when I click on Page 4, no galleries will show but on Page 5 the remaining four galleries will appear.

    Please Please help.
    This is really urgent.
    Thank you.
    ZMD

    https://wordpress.org/plugins/wp-pagination/

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

    (@kishores)

    Can you please provide me the link? So I can debug. Are you using multiple galleries in one page?

    Thread Starter zmd

    (@zmd)

    Hi,
    Thank you for responding so quick.
    The link is as follows –

    Please check the tab called Connect. The pagination only shows in the OOH tab, not on the rest.

    Please help.
    Thank you.

    Thread Starter zmd

    (@zmd)

    LINK

    Didn’t come earlier.

    Thread Starter zmd

    (@zmd)

    Yes I am using multiple galleries on one page.

    Plugin Author Kishores

    (@kishores)

    you are using nextgen gallery. It’s for default wordpress gallery. Currently it’s for single gallery per page

    Thread Starter zmd

    (@zmd)

    Hi,

    If you check the link right now, it works perfectly for a number of galleries on the OOH tab. The problem arises when I try to place the same on the Connect tab.

    I really love this plugin. It is exactly what I was looking for. I am overall familiar with all the workings of WordPress, so even if there is any customisation needed and if you could explain me the same, I would try to do it on my own.

    Thank you for assistance.

    Plugin Author Kishores

    (@kishores)

    This plugin uses this: http://luis-almeida.github.io/jPages/pagination.html

    /* when document is ready */
      $(function(){
        /* initiate the plugin */
        $("div.holder").jPages({
            containerID  : "itemContainer",
            perPage      : 10,
            startPage    : 1,
            startRange   : 1,
            midRange     : 5,
            endRange     : 1
        });
    });

    you need to add different id for different gallery in one page.

    I would love to have your patch.

    Thread Starter zmd

    (@zmd)

    By ID do u mean containerID which is “itemContainer” or div.holder which is jPages ??

    Please could you explain how to add different id’s for the pagination to work on different tabs in one page.

    Plugin Author Kishores

    (@kishores)

    /* when document is ready */
      $(function(){
        /* initiate the plugin */
        $("div.holder").jPages({
            containerID  : "id of second tab container",
            perPage      : 10,
            startPage    : 1,
            startRange   : 1,
            midRange     : 5,
            endRange     : 1
        });
    });

    same for others. write in your theme js file. It may work.

    Plugin Author Kishores

    (@kishores)

    Thanks for the suggestion. I’ll look into this.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Paginate multiple tabs’ is closed to new replies.