<?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: Gravity Forms + User Registration + Displaying custom form field on a page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/gravity-forms-user-registration-displaying-custom-form-field-on-a-page</link>
		<description>Gravity Support Forums Topic: Gravity Forms + User Registration + Displaying custom form field on a page</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 04:35:50 +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/gravity-forms-user-registration-displaying-custom-form-field-on-a-page" rel="self" type="application/rss+xml" />

		<item>
			<title>antonv on "Gravity Forms + User Registration + Displaying custom form field on a page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gravity-forms-user-registration-displaying-custom-form-field-on-a-page#post-41646</link>
			<pubDate>Sat, 19 Nov 2011 15:26:51 +0000</pubDate>
			<dc:creator>antonv</dc:creator>
			<guid isPermaLink="false">41646@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;To link all the extra data to the user profile I have used the user meta. This works great as you can retreive it really easy.&#60;/p&#62;
&#60;p&#62;Here is the code I used to call the data:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
function fn_list_all_user_meta() {
	if( is_user_logged_in() ) {
		$current_user = wp_get_current_user();

		echo &#38;#39;Username: &#38;#39; . $current_user-&#38;gt;user_login . &#38;#39;&#38;#39;;
		echo &#38;#39;User email: &#38;#39; . $current_user-&#38;gt;user_email . &#38;#39;&#38;#39;;
		echo &#38;#39;User first name: &#38;#39; . $current_user-&#38;gt;user_firstname . &#38;#39;&#38;#39;;
		echo &#38;#39;User last name: &#38;#39; . $current_user-&#38;gt;user_lastname . &#38;#39;&#38;#39;;
		echo &#38;#39;User display name: &#38;#39; . $current_user-&#38;gt;display_name . &#38;#39;&#38;#39;;
		echo &#38;#39;User ID: &#38;#39; . $current_user-&#38;gt;ID . &#38;#39;

&#38;#39;;

		$the_meta_array = array(&#38;#39;pic_profile&#38;#39;, &#38;#39;company&#38;#39;, &#38;#39;company_logo&#38;#39;, &#38;#39;business_address_street&#38;#39;, &#38;#39;business_address_city&#38;#39;, &#38;#39;business_address_state&#38;#39;, &#38;#39;business_address_zip&#38;#39;, &#38;#39;phone_direct&#38;#39;, &#38;#39;phone_mobile&#38;#39;, &#38;#39;phone_business&#38;#39;, &#38;#39;Website&#38;#39; );
		foreach ( $the_meta_array as $tma ) {
			$ttt = get_user_meta( $current_user-&#38;gt;ID, $tma, true );
			if ( !empty( $ttt ) ) {
				echo $ttt . &#38;#39;&#38;#39; ;
			}
		}
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DamienOh on "Gravity Forms + User Registration + Displaying custom form field on a page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gravity-forms-user-registration-displaying-custom-form-field-on-a-page#post-41491</link>
			<pubDate>Thu, 17 Nov 2011 21:10:24 +0000</pubDate>
			<dc:creator>DamienOh</dc:creator>
			<guid isPermaLink="false">41491@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;First of all, the gravity forms is used as the registration form for the member, with plenty of fields for the member to fill up. Once the member submit the form, the form (along with the user registration add on) will create a user account for the member. &#60;/p&#62;
&#60;p&#62;The difficult part is this: I am creating a custom plugin to allow the member to log in and view/edit their own info. The plugin needs to pull in data from the gravity forms database and display it in the WP dashboard. The plugin needs to associate the data with the logged in user so that the members can only see their own information. &#60;/p&#62;
&#60;p&#62;AT the moment, there doesn't seem to be a way for the submitted data to be tied to a particular user. In addition, I can't find many example of pulling data from the gravity forms table and display them on the frontend.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Gravity Forms + User Registration + Displaying custom form field on a page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gravity-forms-user-registration-displaying-custom-form-field-on-a-page#post-41417</link>
			<pubDate>Thu, 17 Nov 2011 11:48:01 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">41417@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I lost you around step 3.  Once the form is submitted and the user is created, there is no more form to pass the user ID to.  Where do you want to send the ID of the recently created user?&#60;/p&#62;
&#60;p&#62;For #4, what plugin are you talking about?&#60;/p&#62;
&#60;p&#62;Thanks for any clarification you can provide.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DamienOh on "Gravity Forms + User Registration + Displaying custom form field on a page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gravity-forms-user-registration-displaying-custom-form-field-on-a-page#post-41386</link>
			<pubDate>Thu, 17 Nov 2011 04:48:14 +0000</pubDate>
			<dc:creator>DamienOh</dc:creator>
			<guid isPermaLink="false">41386@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is what I need to do, in sequence:&#60;/p&#62;
&#60;p&#62;1. Create a form to allow visitor to register as a member and capture various user info.&#60;br /&#62;
2. Integrate with the user registration addon to register a user account&#60;br /&#62;
3. Once registered pass the user id back to the form&#60;br /&#62;
4. Once the form data is saved to the database, it should be retrievable by a plugin to allow the admin to view and modify the user info.&#60;/p&#62;
&#60;p&#62;I have completed 1 and 2. I am having some difficulties passing the user id back to the form and also retrieving form data from the database. &#60;/p&#62;
&#60;p&#62;Can anyone help?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
