PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Thanks/succes page with form data

  1. reinaris
    Member

    I'd like to create a succes page (just a page in Wordpress with a specified template) where I can show the submitted data like:

    Dear <?php the_submitted_gf_data('firstname'); ?>,

    Is there something like that?

    Posted 12 years ago on Thursday September 1, 2011 | Permalink
  2. reinaris
    Member

    Mm just saw the option to 'Pass Field Data Via Query String'. But why not passing field data to a Wordpress page? Or is there a simple function to do that?

    Posted 12 years ago on Thursday September 1, 2011 | Permalink
  3. You can send the data from your form to the next page using the query string, but the next page has to "catch" that data and then do something with it. The work needs to be done in the template or page you are redirecting to.

    Here are a couple explanations of how to use the query string with WordPress functions:
    http://thewordpresswarrior.com/616/passing-variables-via-url
    http://www.webopius.com/content/137/using-custom-url-parameters-in-wordpress

    Posted 12 years ago on Thursday September 1, 2011 | Permalink