<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Pass form data to receipt page?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page</link>
		<description>Gravity Support Forums Topic: Pass form data to receipt page?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 04:35:20 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/pass-form-data-to-receipt-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-43615</link>
			<pubDate>Sat, 10 Dec 2011 03:19:19 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">43615@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Derek, you can find help here or post your own job there as well.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/how-the-job-board-works&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/how-the-job-board-works&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>derekalvarez on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-43600</link>
			<pubDate>Fri, 09 Dec 2011 22:52:31 +0000</pubDate>
			<dc:creator>derekalvarez</dc:creator>
			<guid isPermaLink="false">43600@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here's the code I'm using in the page template, still no dice...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
 * Template Name: Receipt Page
 * This template displays only content; no header, footer, etc
 */

// Allow Shortcodes
add_filter(&#38;#39;the_content&#38;#39;, &#38;#39;do_shortcode&#38;#39;, 11);

// Remove Header
remove_action(&#38;#39;genesis_header&#38;#39;, &#38;#39;genesis_header_markup_open&#38;#39;, 5);
remove_action(&#38;#39;genesis_header&#38;#39;, &#38;#39;genesis_header_markup_close&#38;#39;, 15);
remove_action(&#38;#39;genesis_header&#38;#39;, &#38;#39;genesis_do_header&#38;#39;);

// Remove the page title
remove_action(&#38;#39;genesis_post_title&#38;#39;, &#38;#39;genesis_do_post_title&#38;#39;);

// Remove Navigation
remove_action(&#38;#39;genesis_after_header&#38;#39;, &#38;#39;genesis_do_nav&#38;#39;);
remove_action(&#38;#39;genesis_after_header&#38;#39;, &#38;#39;genesis_do_subnav&#38;#39;); 

// Remove Breadcrumbs
remove_action(&#38;#39;genesis_before_loop&#38;#39;, &#38;#39;genesis_do_breadcrumbs&#38;#39;);

// Remove Footer
remove_action(&#38;#39;genesis_footer&#38;#39;, &#38;#39;genesis_do_footer&#38;#39;);
remove_action(&#38;#39;genesis_footer&#38;#39;, &#38;#39;genesis_footer_markup_open&#38;#39;, 5);
remove_action(&#38;#39;genesis_footer&#38;#39;, &#38;#39;genesis_footer_markup_close&#38;#39;, 15);

// Remove Top Search
remove_action(&#38;#39;genesis_after_header&#38;#39;, &#38;#39;agentpress_top_search&#38;#39; );

// Remove Footer Widgets
remove_action( &#38;#39;genesis_before_footer&#38;#39;, &#38;#39;genesis_footer_widget_areas&#38;#39; );  

genesis(); // requires Genesis 1.3+&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Can you recommend someone who can take care of this for me? I'm willing to pay for it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-42623</link>
			<pubDate>Wed, 30 Nov 2011 19:00:46 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42623@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It doesn't look like that page is parsing the [urlparam] shortcode.  Either something is wrong with the shortcode, something is wrong with that plugin, OR your template isn't configured to parse shortcodes.  My initial guess is however that page is configured it isn't parsing shortcodes for the content.&#60;/p&#62;
&#60;p&#62;Shortcodes aren't parsed automatically by WordPress.  The do_shortcode function must be used on the content to trigger the shortcode parser.  That could be what the problem is here.  Here is documentation on the do_shortcode function in WordPress:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/do_shortcode&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/do_shortcode&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have no access to that WordPress theme template file to be able to determine for sure if this is what the problem is.  But if where the_content is output in that theme template it's not being passes through the do_shortcode function or there is nothing in your functions.php file doing this for you... then the shortcodes won't be parsed and they will simply display on the page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>derekalvarez on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-42593</link>
			<pubDate>Wed, 30 Nov 2011 17:03:22 +0000</pubDate>
			<dc:creator>derekalvarez</dc:creator>
			<guid isPermaLink="false">42593@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks again Carl,&#60;/p&#62;
&#60;p&#62;I added the plugin and set up the form to redirect to this url...&#60;br /&#62;
&#60;a href=&#34;http://recycleirvine.org/casb20/receipt/&#34; rel=&#34;nofollow&#34;&#62;http://recycleirvine.org/casb20/receipt/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I set up the query string like this...&#60;br /&#62;
id={entry_id}fname={Name: (First):3.3}&#38;amp;lname={Name: (Last):3.6}&#60;/p&#62;
&#60;p&#62;But I think I must be using the wrong names on the receipt page?&#60;br /&#62;
&#60;a href=&#34;http://recycleirvine.org/casb20/receipt/&#34; rel=&#34;nofollow&#34;&#62;http://recycleirvine.org/casb20/receipt/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Example code: [ urlparam param=&#34;fname&#34; /] [ urlparam param=&#34;lname&#34; /]&#60;/p&#62;
&#60;p&#62;Should I be typing something else instead of &#34;fname&#34; or &#34;lname&#34;?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-41596</link>
			<pubDate>Fri, 18 Nov 2011 18:53:25 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41596@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you pass it to your receipt page via the query string using the Redirect confirmation method, then you will need to make your receipt page read and display the query string values using PHP.   So you'd have to add PHP to your custom receipt page to read and display the query string items.&#60;/p&#62;
&#60;p&#62;If this is above your head in terms of PHP knowledge then you could go about this another way.  Use a WordPress page for your receipt, and then use a plugin that lets you display query string values using shortcodes such as this one:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/url-params/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/url-params/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You would still need to use the Redirect confirmation method (not the Page method) and then put the full path URL to your WordPress page and then configure the query string builder to pass the form field values.&#60;/p&#62;
&#60;p&#62;Then on your receipt page you could use that shortcode plugin to display the query string values wherever you want to display them.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>derekalvarez on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-41585</link>
			<pubDate>Fri, 18 Nov 2011 17:33:01 +0000</pubDate>
			<dc:creator>derekalvarez</dc:creator>
			<guid isPermaLink="false">41585@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Carl,&#60;/p&#62;
&#60;p&#62;How do I make my receipt page read the query string? What code do I need to add to it?&#60;br /&#62;
Will it then display the data the way I have set up?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-41317</link>
			<pubDate>Wed, 16 Nov 2011 16:27:43 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41317@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Looking at your receipt page I see Gravity Forms merge tags.  Those merge tags aren't going to get replaced because it's outside the scope of Gravity Forms.&#60;/p&#62;
&#60;p&#62;I'm not sure how the custom code you posted above plays into this.  &#60;/p&#62;
&#60;p&#62;If what you want to do is display the form submission data on that receipt page, then you need to pass the form field data to that page via the query string as Chris outlined above.&#60;/p&#62;
&#60;p&#62;Your receipt page then needs to read and display the query string values and insert them where you want them displayed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>derekalvarez on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-41289</link>
			<pubDate>Wed, 16 Nov 2011 15:24:16 +0000</pubDate>
			<dc:creator>derekalvarez</dc:creator>
			<guid isPermaLink="false">41289@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I put this aside for awhile, but I'm back at it!&#60;/p&#62;
&#60;p&#62;Here's where I'm at now... I've set up a form page that sends an HTML email receipt, but I would also like the page to pass the data onto a page on the website.&#60;/p&#62;
&#60;p&#62;Here's where the form is...&#60;br /&#62;
&#60;a href=&#34;http://recycleirvine.org/casb20/&#34; rel=&#34;nofollow&#34;&#62;http://recycleirvine.org/casb20/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Here's the receipt page that I can't seem to get working...&#60;br /&#62;
&#60;a href=&#34;http://recycleirvine.org/casb20/receipt/&#34; rel=&#34;nofollow&#34;&#62;http://recycleirvine.org/casb20/receipt/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I've added this code to my functions.php file, but I'm not sure what else I should be doing?&#60;br /&#62;
/** Gravity Forms Receipt */&#60;br /&#62;
add_filter(&#34;gform_post_data&#34;, &#34;change_post_type&#34;, 1645);&#60;br /&#62;
function change_post_type($post_data, $form){&#60;br /&#62;
    //only change post type on form id X&#60;br /&#62;
    if($form[&#34;id&#34;] != 6) // You need to change your form ID here&#60;br /&#62;
       return $post_data;&#60;/p&#62;
&#60;p&#62;	   // Add other page data to change&#60;br /&#62;
	   $post_data[&#34;post_type&#34;] = &#34;page&#34;;&#60;br /&#62;
	   $post_data[&#34;post_parent&#34;] = 466;&#60;br /&#62;
    return $post_data;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-33268</link>
			<pubDate>Mon, 22 Aug 2011 20:10:44 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">33268@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is &#34;print&#34; just another WordPress page (page 15?)  If so, you will want to use &#34;Redirect&#34; in your confirmation settings, and redirect to this page &#60;a href=&#34;http://ontopinternetmarketing.com/forms-demo/casb20/print/&#34; rel=&#34;nofollow&#34;&#62;http://ontopinternetmarketing.com/forms-demo/casb20/print/&#60;/a&#62; .  Then, you need to need to check the box &#34;Pass Field Data Via Query String&#34; and type something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;fname=&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then after the equal sign, use the Insert form field drop down to insert the merge tag for the field you want to pass from the form, so that the textarea looks like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;fname={Name (First):1.3}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then type &#60;strong&#62;&#38;amp;lname=&#60;/strong&#62; and insert the next merge field (last name.)  When you're done, it will look like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;fname={Name (First):1.3}&#38;amp;lname={Name (Last):1.6}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now that you are sending the values to the second page (the print page) you need to use them there somehow.  This could be by using a special page template that looks for those two values.  This would require a small amount of PHP in your functions.php or the special page template you use for this print page.&#60;/p&#62;
&#60;p&#62;However, that leaves this pretty open to abuse.  Anyone could submit a URL like&#60;br /&#62;
&#60;a href=&#34;http://ontopinternetmarketing.com/forms-demo/casb20/print/?fname=MyFirst&#38;amp;lname=MyLast&#34; rel=&#34;nofollow&#34;&#62;http://ontopinternetmarketing.com/forms-demo/casb20/print/?fname=MyFirst&#38;amp;lname=MyLast&#60;/a&#62; and get the certificate.&#60;/p&#62;
&#60;p&#62;Does the email notification to the user not provide enough of a certificate?  You can style that however you want and it will be emailed to the person who submitted the form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>derekalvarez on "Pass form data to receipt page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pass-form-data-to-receipt-page#post-33258</link>
			<pubDate>Mon, 22 Aug 2011 18:54:25 +0000</pubDate>
			<dc:creator>derekalvarez</dc:creator>
			<guid isPermaLink="false">33258@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way I can pass the form data onto a receipt page? Here's the form:&#60;br /&#62;
&#60;a href=&#34;http://ontopinternetmarketing.com/forms-demo/casb20/&#34; rel=&#34;nofollow&#34;&#62;http://ontopinternetmarketing.com/forms-demo/casb20/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This page would have a certificate with their name on it:&#60;br /&#62;
&#60;a href=&#34;http://ontopinternetmarketing.com/forms-demo/casb20/print/&#34; rel=&#34;nofollow&#34;&#62;http://ontopinternetmarketing.com/forms-demo/casb20/print/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How can I make this happen? I've looked all over the forums and haven't been able to find the answer.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
