Title: Page Numbers Issue
Last modified: August 30, 2016

---

# Page Numbers Issue

 *  Resolved [dustundag](https://wordpress.org/support/users/dustundag/)
 * (@dustundag)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/)
 * Hi
    I am using “mycontainer” for 6 each divi pages Css Layout and having stylepublic.
   css #fbuilder .mycontainer {display:none;}input{font-size:16px;font-weight:bold;
   color:#FF0000;} I am using page break between each divi page and drop down selection
   If selected show: divi to show the pages. However dropdown selection does now
   show directly the related page but passes the hidden pages with the existing 
   page numbers including hidden pages. Is it possible to pass by the empty pages?
   [http://www.teknoyangin.com/atrium-17/](http://www.teknoyangin.com/atrium-17/)
   Thanks
 * [https://wordpress.org/plugins/calculated-fields-form/](https://wordpress.org/plugins/calculated-fields-form/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887712)
 * Hi dustundag,
 * If you want jump to the page 5, you should call the snippet of code:
 * `jQuery( '.pbNext' )[3].click();`
 * The number of elements start in zero, so, the previous code is triggering the
   click event of fourth “Next” button, to display the fifth page.
 * As you know now the code that allows jump to different pages in the form, simply
   should use it in the logic of your project.
 * Best regards.
 *  Thread Starter [dustundag](https://wordpress.org/support/users/dustundag/)
 * (@dustundag)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887742)
 * Greats
    Thanks
 *  Thread Starter [dustundag](https://wordpress.org/support/users/dustundag/)
 * (@dustundag)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887810)
 * Hi
    i belive It is not possible to use the snippet of code direcly with radio
   buttons but requires “button” or “calculated fields”, or Html content ?
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887825)
 * Hi,
 * The use of the previous piece of code will depend of your form’s logic, there
   is not an unique mode to use it. You can include it as the onclick event of a
   button, or as part of an equation associated to a calculated field.
 * If you are needing additional help with the project, I can offer you a custom
   coding service through my private support page:
 * [http://cff.dwbooster.com/customization](http://cff.dwbooster.com/customization)
 * Best regards.
 *  Thread Starter [dustundag](https://wordpress.org/support/users/dustundag/)
 * (@dustundag)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887900)
 * I did tried to use jQuery( ‘.pbNext’ )[3].click();
    Basically it did work at 
   start, but due to multipage at somewhere it was by passing the first page . so
   instead, i have used the followings successfully after following similar posts**
   First Page** After Radio Button with value selection 1 and 2 if(fieldname216=
   =”1″) jQuery(‘div.pbNext:eq(0)’).click(); else jQuery(‘div.pbNext:eq(0)’).hide();
   if(fieldname216==”2″) jQuery(‘div.pbNext:eq(1)’).click(); else jQuery(‘div.pbNext:
   eq(1)’).hide(); **Third Page** After Radio Button with value selection 1 and 
   2 if(fieldname217==”1″) jQuery(‘div.pbNext:eq(2)’).click(); else jQuery(‘div.
   pbNext:eq(2)’).hide(); if(fieldname217==”2″) jQuery(‘div.pbNext:eq(4)’).click();
   else jQuery(‘div.pbNext:eq(4)’).hide();
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887901)
 * Hi,
 * In reality my recommendation would be emulate the “Next” and “Previous” buttons,
   with common buttons (and hide the next and previous buttons with css), using 
   a calculated field as auxiliary field to identify the new page (create a javascript
   variable with global scope, from the equations, and check its value from the 
   onclick events of buttons to emulate the “Next” and “Previous” buttons).
 * The required code is specific to your project, and there is not an unique way
   to do it.
 * Best regards.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Page Numbers Issue’ is closed to new replies.

 * ![](https://ps.w.org/calculated-fields-form/assets/icon-256x256.jpg?rev=1734377)
 * [Calculated Fields Form](https://wordpress.org/plugins/calculated-fields-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/calculated-fields-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/calculated-fields-form/)
 * [Active Topics](https://wordpress.org/support/plugin/calculated-fields-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/calculated-fields-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/calculated-fields-form/reviews/)

## Tags

 * ["page numbers"](https://wordpress.org/support/topic-tag/page-numbers/)

 * 6 replies
 * 2 participants
 * Last reply from: [codepeople](https://wordpress.org/support/users/codepeople/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/page-numbers-issue/#post-6887901)
 * Status: resolved