<?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: How to pass values from one form to another and allow to update</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-pass-values-from-one-form-to-another-and-allow-to-update</link>
		<description>Gravity Support Forums Topic: How to pass values from one form to another and allow to update</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 16:14:01 +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/how-to-pass-values-from-one-form-to-another-and-allow-to-update" rel="self" type="application/rss+xml" />

		<item>
			<title>Mike_sa on "How to pass values from one form to another and allow to update"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-pass-values-from-one-form-to-another-and-allow-to-update#post-70835</link>
			<pubDate>Mon, 13 Aug 2012 09:46:23 +0000</pubDate>
			<dc:creator>Mike_sa</dc:creator>
			<guid isPermaLink="false">70835@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;got it all sorted out thanks :) &#60;/p&#62;
&#60;p&#62;Yea I thought it would be afterhours for you guys :)&#60;br /&#62;
Was working locally so could not provide a url, but thanks very much for the reply :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How to pass values from one form to another and allow to update"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-pass-values-from-one-form-to-another-and-allow-to-update#post-70789</link>
			<pubDate>Mon, 13 Aug 2012 02:23:21 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">70789@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your urgent request hit us outside normal support hours (which are 9AM to 6PM GMT -0400 Mon-Fri.)  Do you still need help with this on Monday?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mike_sa on "How to pass values from one form to another and allow to update"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-pass-values-from-one-form-to-another-and-allow-to-update#post-70748</link>
			<pubDate>Sun, 12 Aug 2012 19:14:44 +0000</pubDate>
			<dc:creator>Mike_sa</dc:creator>
			<guid isPermaLink="false">70748@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have managed to to the registration form to save the field entries to the wp usermeta and the profile page to pull the values of the various fields from the user database. &#60;/p&#62;
&#60;p&#62;I now have an issue with updating the various field values to the WP_usermeta.... I have looked at so many forum post on all sorts of websites and have yet to find an answer that works...&#60;/p&#62;
&#60;p&#62;Could someone please help, this is rather urgent, below is my code that retrieves and populates the profile form.... I just need to get it too save any updates made to the form including if the password is updated. &#60;/p&#62;
&#60;p&#62;I cannot provide a url as I am working locally using mamp. &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
add_action( 'show_user_profile', 'show_extra_profile_fields' );&#60;br /&#62;
add_action( 'edit_user_profile', 'show_extra_profile_fields' );&#60;/p&#62;
&#60;p&#62;//show_extra_profile_fields add extra meta fields to user profile on the back end of WP in the meta&#60;br /&#62;
function show_extra_profile_fields( $user ) { ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;h3&#38;gt;Extra profile information&#38;lt;/h3&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;table class=&#34;form-table&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;tr&#38;gt;&#60;br /&#62;
                        &#38;lt;th&#38;gt;&#38;lt;label for=&#34;title&#34;&#38;gt;Title&#38;lt;/label&#38;gt;&#38;lt;/th&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;td&#38;gt;&#60;br /&#62;
				&#38;lt;input type=&#34;text&#34; name=&#34;title&#34; id=&#34;title&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Title', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;/td&#38;gt;&#60;/p&#62;
&#60;p&#62;                &#38;lt;/tr&#38;gt;&#60;br /&#62;
                &#38;lt;tr&#38;gt;&#60;/p&#62;
&#60;p&#62;                        &#38;lt;th&#38;gt;&#38;lt;label for=&#34;gender&#34;&#38;gt;Gender&#38;lt;/label&#38;gt;&#38;lt;/th&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;td&#38;gt;&#60;br /&#62;
				&#38;lt;input type=&#34;text&#34; name=&#34;gender&#34; id=&#34;gender&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Gender', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;/td&#38;gt;&#60;br /&#62;
                &#38;lt;/tr&#38;gt;&#60;br /&#62;
                &#38;lt;tr&#38;gt;&#60;br /&#62;
                        &#38;lt;th&#38;gt;&#38;lt;label for=&#34;dob&#34;&#38;gt;DOB&#38;lt;/label&#38;gt;&#38;lt;/th&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;td&#38;gt;&#60;br /&#62;
				&#38;lt;input type=&#34;text&#34; name=&#34;dob&#34; id=&#34;dob&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'DOB', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;/td&#38;gt;&#60;br /&#62;
                 &#38;lt;/tr&#38;gt;&#60;br /&#62;
                &#38;lt;tr&#38;gt;&#60;br /&#62;
                        &#38;lt;th&#38;gt;&#38;lt;label for=&#34;mobile&#34;&#38;gt;Mobile&#38;lt;/label&#38;gt;&#38;lt;/th&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;td&#38;gt;&#60;br /&#62;
				&#38;lt;input type=&#34;text&#34; name=&#34;mobile&#34; id=&#34;Mobile&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Mobile', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;/td&#38;gt;&#60;br /&#62;
                 &#38;lt;/tr&#38;gt;&#60;br /&#62;
                &#38;lt;tr&#38;gt;&#60;br /&#62;
                        &#38;lt;th&#38;gt;&#38;lt;label for=&#34;Address&#34;&#38;gt;Address&#38;lt;/label&#38;gt;&#38;lt;/th&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;td&#38;gt;&#60;br /&#62;
				&#38;lt;input type=&#34;text&#34; name=&#34;strt&#34; id=&#34;strt&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-street', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;Address 1&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;addy2&#34; id=&#34;addy2&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-2', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;Address 2&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;city&#34; id=&#34;city&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-city', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;city&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;province&#34; id=&#34;province&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-province', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;State/ Province&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;zip&#34; id=&#34;zip&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-zip', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;Postal / Zip code&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;country&#34; id=&#34;country&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'Address-country', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;Country&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;				&#38;lt;input type=&#34;text&#34; name=&#34;opt&#34; id=&#34;opt&#34; value=&#34;&#38;lt;?php echo esc_attr( get_the_author_meta( 'OPT', $user-&#38;gt;ID ) ); ?&#38;gt;&#34; class=&#34;regular-text&#34; /&#38;gt;&#60;br /&#62;
				&#38;lt;span&#38;gt;OPT&#38;lt;/span&#38;gt;&#60;br /&#62;
			&#38;lt;/td&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;/tr&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;/table&#38;gt;&#60;br /&#62;
&#38;lt;?php }&#60;/p&#62;
&#60;p&#62;/*&#60;br /&#62;
 *&#60;br /&#62;
 * Populate the form field specifically on the form My Profile (form 3)&#60;br /&#62;
 * return RGForms::get_form( 3, false, false, false, $field_values, false, 1);&#60;br /&#62;
 *&#60;br /&#62;
 */&#60;/p&#62;
&#60;p&#62;function user_profile_shortcode( $atts, $content ){&#60;br /&#62;
	global $current_user;&#60;br /&#62;
	get_currentuserinfo();&#60;/p&#62;
&#60;p&#62;	//UNTESTED&#60;br /&#62;
	$meta = get_user_meta( $current_user-&#38;gt;id );&#60;/p&#62;
&#60;p&#62;	$field_values = array(&#60;br /&#62;
		'email'    =&#38;gt; $current_user-&#38;gt;user_email,&#60;/p&#62;
&#60;p&#62;		'first_name'  =&#38;gt; $meta['first_name'][0],&#60;br /&#62;
		'last_name'   =&#38;gt; $meta['last_name'][0],&#60;br /&#62;
		'Title' =&#38;gt; $meta['Title'][0],&#60;br /&#62;
                'Mobile' =&#38;gt; $meta['Mobile'][0],&#60;br /&#62;
                'DOB' =&#38;gt; $meta['DOB'][0],&#60;br /&#62;
                'Gender' =&#38;gt; $meta['Gender'][0],&#60;br /&#62;
                'Address-2' =&#38;gt; $meta['Address-2'][0],&#60;br /&#62;
                'Address-street' =&#38;gt; $meta['Address-street'][0],&#60;br /&#62;
                'Address-city' =&#38;gt; $meta['Address-city'][0],&#60;br /&#62;
                'Address-zip' =&#38;gt; $meta['Address-zip'][0],&#60;br /&#62;
                'Address-province' =&#38;gt; $meta['Address-province'][0],&#60;br /&#62;
                'Address-country' =&#38;gt; $meta['Address-country'][0],&#60;br /&#62;
                'OPT' =&#38;gt; $meta['OPT'][0]&#60;/p&#62;
&#60;p&#62;	);&#60;/p&#62;
&#60;p&#62;	return RGForms::get_form( 3, false, false, false, $field_values, false, 1);&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
//[user_profile] Will Display The Form.&#60;br /&#62;
add_shortcode( 'user_profile', 'user_profile_shortcode' );&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mike_sa on "How to pass values from one form to another and allow to update"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-pass-values-from-one-form-to-another-and-allow-to-update#post-70519</link>
			<pubDate>Fri, 10 Aug 2012 08:25:19 +0000</pubDate>
			<dc:creator>Mike_sa</dc:creator>
			<guid isPermaLink="false">70519@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am very new to Gravity forms. &#60;/p&#62;
&#60;p&#62;I have a form &#34; registration form&#34; that is setting up and saving only the standard sign up details to the wp users db, it does not save the other input fields to the specific user on their profile. &#60;/p&#62;
&#60;p&#62;The form is saving all of the fields that have been filled in on the form in the entries that is found in the edit area of this form. &#60;/p&#62;
&#60;p&#62;I need to pass these values to the my profile page on the site and display them in an identical form just without the captcha on the form. both forms have been setup to allow content to be prepopulated with identical field names. &#60;/p&#62;
&#60;p&#62;If the user updates their profile on this form I need it too update the details saved in the registration entries. &#60;/p&#62;
&#60;p&#62;I have only every used gravity forms for simple contact forms before and am total lost :S&#60;/p&#62;
&#60;p&#62;This is rather urgent, could someone please point me in the right direction, I have looked at many of the forum posts but only ended up get more confused :s&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
