Is there anyway to reference "Field Data" from page 1 on Page 2 of a multi page form? Example: If I require Name on page 1 can I display "name" on page 2?
Is there anyway to reference "Field Data" from page 1 on Page 2 of a multi page form? Example: If I require Name on page 1 can I display "name" on page 2?
Sorry for the delayed response. Yes, it is possible to reference data from page 1 on page 2. You may use the hook "gform_pre_render" and pull the information you need out of $_POST. The documentation is located at http://www.gravityhelp.com/documentation/page/Gform_pre_render .
Below is a sample I made. I have two pages. The first page has first name and last name. The second page has an html field that I populated with the first/last name from the first page.