Title: Forminator parameters
Last modified: January 31, 2026

---

# Forminator parameters

 *  Resolved [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/forminator-parameters/)
 * Hi,
 * i have done a complete form “dates de naissances” which works correctly : when
   a date of birth is entered , the form is submitting to a new page depending of
   form rules.
 * But on the new page submitted i need the use the date of birth to display another
   informations : is there a possibility to retreive this parameter on the submitted
   page ? , and how to use this date of birth on another form ( without asking the
   user) ?
 * Here is my form “Date de naissance Staging.txt” : [https://drive.google.com/drive/folders/1NWukzoSQ4RRFsZd_N8e2IfbHlRE-yBd7?usp=sharing](https://drive.google.com/drive/folders/1NWukzoSQ4RRFsZd_N8e2IfbHlRE-yBd7?usp=sharing)
 * Thanks by advance
 * Dominique

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

 *  Plugin Support [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * (@wpmudev-support2)
 * [4 months ago](https://wordpress.org/support/topic/forminator-parameters/#post-18805511)
 * Hello [@dba83](https://wordpress.org/support/users/dba83/)
 * Hope you are doing well today.
 * You can use pre-populate feature, send the date via URL redirection and then 
   use the same name in the field with Pre-populate, please take a look at this 
   doc to learn more how to use it.
    [https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#pre-populate-form-field-values](https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#pre-populate-form-field-values)
 * Let us know if you have any questions.
 * Best Regards
    Amin
 *  Plugin Support [Dmytro – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport16/)
 * (@wpmudevsupport16)
 * [3 months, 4 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18814533)
 * Hello [@dba83](https://wordpress.org/support/users/dba83/),
 * I hope the above suggestion to pre-populate form fields helped. We haven’t heard
   from you for a while, so I’ll be marking this thread as resolved for now.
 * Please feel free to reopen it, if you need our further assistance.
 * Best Regards,
    Dmytro
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18816370)
 * Hi Dmytro, thanks for your email , yes i have followed your suggestion but i 
   don’t know how to use the date of birth on the new page submitted : the best 
   way for me is to use the date of birth on another form to submit another page
   without input of the user .. Please let me know if it is possible ?
 * BE
 * Dominique
 *  [Kris – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport13/)
 * (@wpmudevsupport13)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18816826)
 * Hi [@dba83](https://wordpress.org/support/users/dba83/)
 * Please double-check if you have followed all steps from the guide we have shared
   in the previous reply: [https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#pre-populate-form-field-values](https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#pre-populate-form-field-values)
 * With all the steps, you should be able to pass details from one form to another
   one.
 * Kind Regards,
   Kris
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18821918)
 * Hi Kris, thanks for you email , i have followed the rules to Pre-Populate my 
   Form Field Values, however i don’t know how to use this field value on my second
   form here is my operations :
 * On my first form ” _date de naissance_” , i have updated one URL after submission
   behavior to pre-populate the “date-1” value ( ie date of birth) like the following(
   the sixth URL submission) :
 * [https://astro-dom.ovh/yamato/?page_id=272?datedenaissance={date-1}](https://astro-dom.ovh/yamato/?page_id=272?datedenaissance={date-1})
 * So the key here is “datedenaissance”
 * Then on the submitted page above i have created another form “_signes_” and updated
   the setting date field with the query parameter “datedenaissance” , then i copied
   the shortcode of my form “_signes_” on the new page above, but when the submitted
   page appears , the form is displayed without the date and i need also to enter
   the date of birth !
 * I think that i’m doing something wrong but i don’t know what is wrong…
 * Please download the “date de naissance” form here: [https://drive.google.com/file/d/1h2K-3NXw8_kWFXXAY_jdPX4G6-Ar5Ukw/view?usp=sharing](https://drive.google.com/file/d/1h2K-3NXw8_kWFXXAY_jdPX4G6-Ar5Ukw/view?usp=sharing)
 * and “signes” form here : [https://drive.google.com/file/d/1qS8_M-YZvjip_q8w8ASR6GrVxiYLoVi-/view?usp=sharing](https://drive.google.com/file/d/1qS8_M-YZvjip_q8w8ASR6GrVxiYLoVi-/view?usp=sharing)
 * Thank-you by advance
 * BR
 * Dominique
 *  Plugin Support [Dmytro – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport16/)
 * (@wpmudevsupport16)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822082)
 * Hello Dominique,
 * Thanks for the explanation. The steps are correct, except for the redirect URL
   you’ve specified in the first form:
 * `https://astro-dom.ovh/yamato/?page_id=272?datedenaissance={date-1}`
 * – since there’s more than one parameter (_page\_id_ and _datedenaissance_), they
   should be separated by **&** sign, not by the second **?**. So the correct URL
   should be:
 * `https://astro-dom.ovh/yamato/?page_id=272&datedenaissance={date-1}`
 * I hope this helps. Please let us know if there’s still any issue after correcting
   the URL.
 * Best Regards,
    Dmytro
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822269)
 * Hi Dmytro, yes it’s working fine!
 * Thank-you for your great help !
 * BR
 * Dominique
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822272)
 * Before mark this thread as resolved I have a last question :
 * Is it possible to run the pre-populated form ( in my case the “Signes” form) 
   automatically when the new page is submitted , and without the user intervention?
 * BR
 * Dominique
 *  Plugin Support [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * (@wpmudev-support2)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822367)
 * Hello [@dba83](https://wordpress.org/support/users/dba83/)
 * Unfortunately, there are no built-in options available for that. The user needs
   to enter a date and submit it in order for the pre-populated work to appear on
   the second page.
 * Best Regards
    Amin
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822464)
 * Thanks for your reply, but is-it possible to hide the second pre-populated form(
   the user is knowing his date of birth), and ask the user to validate the form?
 * Best Regards
 * Dominique
 *  Plugin Support [Nebu John – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport14/)
 * (@wpmudevsupport14)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822713)
 * Hi [@dba83](https://wordpress.org/support/users/dba83/),
 * I am a bit confused about the requirement here. Can you please clarify how you
   expect the user to validate the information if the form is hidden?
 * Please provide a brief explanation of the workflow you expect so that we can 
   assist you further.
 * Best Regards,
    Nebu John
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18822889)
 * Hi, sorry my question is not clear : i try to use the query parameter on the 
   second page (date of birth) in order to calculate the astrologic sign on the 
   form, and then submit to another page with the sign characteristic . But i think
   it is not possible.
 * BR
 * Dominique
 *  Plugin Support [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * (@wpmudev-support2)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18823322)
 * Hi [@dba83](https://wordpress.org/support/users/dba83/)
 * You need to add information to the page URL as query parameters. Forminator can
   only accomplish this if there is an earlier form on the page that passes the 
   information as redirect parameters. If that’s not the case, you’ll need to use
   custom coding to append the data to the URL parameters in the second form.
 * Best Regards
    Amin
 *  Thread Starter [dba83](https://wordpress.org/support/users/dba83/)
 * (@dba83)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18823570)
 * Thank-you so much for your informations !
 * Best Regards
 * Dominique
 *  Plugin Support [Williams – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport3/)
 * (@wpmudevsupport3)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18823911)
 * Hi [@dba83](https://wordpress.org/support/users/dba83/) ,
 * I hope you’re doing well.
 * I’m glad that we were able to answer your questions. If you have a moment, I 
   would very much appreciate it if you could quickly rate our plugin. This will
   help us keep the plugin available for free.
 * [https://wordpress.org/support/plugin/forminator/reviews/#new-post](https://wordpress.org/support/plugin/forminator/reviews/#new-post)
 * Best Regards,
    Williams Valerio

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

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fforminator-parameters%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/forminator/assets/icon-256x256.gif?rev=3443182)
 * [Forminator Forms – Contact Form, Payment Form & Custom Form Builder](https://wordpress.org/plugins/forminator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/forminator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/forminator/)
 * [Active Topics](https://wordpress.org/support/plugin/forminator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/forminator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/forminator/reviews/)

 * 15 replies
 * 6 participants
 * Last reply from: [Williams – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport3/)
 * Last activity: [3 months, 3 weeks ago](https://wordpress.org/support/topic/forminator-parameters/#post-18823911)
 * Status: resolved