Home > database >  Send information from elementor form to another page with the modified data
Send information from elementor form to another page with the modified data

Time:01-27

I'm building a wordpress site with elementor pro.

I want to make a form (in which you enter some numerical data as metric cubes and other numbers) that redirects you to another page where that data is transformed. How can I do that?

CodePudding user response:

maybe you can use a template with html javascript linked by an external link button

CodePudding user response:

When redirecting to the other page (eg: site.com/other-page) you could include the "numerical data" as a Query String directly in the redirected URL (eg: site.com/other-page?data=1234). Then, upon initial loading of the other page, the data can be retrieved from the URL

  •  Tags:  
  • Related