• Resolved Bakhshi

    (@bakhshi)


    Hi

    Please look this link

    Link

    I made three pages with Brake Page and I put one field on each page.

    I want the second page not to appear when you select the A button and move the user from the first page to the third page.

    what should I do????

    Thank you for your attention

    • This topic was modified 5 years ago by Bakhshi.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @bakhshi

    You cannot create dependencies that affect complete pages, however, you can hide the current “Next” and “Previous” buttons, and include your own buttons for jumping to the page you want. Note that for jumping from the page A to the page B, the validation rules of every fields in the pages between the page A and B, must be satisfied.

    The process would be as follows:

    First, for hiding the common “Next” and “Previous” buttons, enter the following style definition into the “Customize Form Design” attribute in the “Form Settings” tab:

    
    #fbuilder .pbNext,
    #fbuilder .pbPrevious{display:none !important;}
    

    And then, insert a button in the first page of the form with the following piece of code as the onclick event for jumping to the third page:

    
    fbuilderjQuery.fbuilder.goToPage({'formIdentifier':'_1', 'from':0, 'to':2});
    

    As you can see, the pages indexes begin in zero, the index of first page is 0, the second page 1, the third page 2, and so on.

    Now you can insert two buttons in the first page, one of them for jumping to the second page and another one for jumping to the third page, and define them as dependent to display only one of them.

    Best regards.

    Thread Starter Bakhshi

    (@bakhshi)

    thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show blank page’ is closed to new replies.