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.