I used this documentation to split my signup process. I need to remove the 3rd page of email validation. The same question was asked in this link, I tried the same solution but it only hide the change email button, but not skip the page entirely.
HTML code :
<button class="editButton" id="email_ver_but_edit" type="button" aria-label="Change e-mail" style="display: inline;" aria-hidden="false">Change e-mail</button>
CSS code :
#email_ver_but_edit {
visibility: hidden;
}
PS: Continue and cancel buttons are also hided, I just need to show them in the last page.