<?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: Need help displaying custom form fields in a post</title>
		<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post</link>
		<description>Gravity Support Forums Topic: Need help displaying custom form fields in a post</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:23:47 +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/need-help-displaying-custom-form-fields-in-a-post" rel="self" type="application/rss+xml" />

		<item>
			<title>deanbush on "Need help displaying custom form fields in a post"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post#post-6751</link>
			<pubDate>Mon, 28 Jun 2010 01:23:22 +0000</pubDate>
			<dc:creator>deanbush</dc:creator>
			<guid isPermaLink="false">6751@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ah - thank you, this clarifies quite a bit. Hope this is helpful for others.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Need help displaying custom form fields in a post"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post#post-6750</link>
			<pubDate>Mon, 28 Jun 2010 00:35:18 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">6750@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Only the Post Custom Field stores data as custom fields in the post meta table when creating posts.  If you are using standard or advanced fields, these don't store data as post custom fields and only store their data in the lead table&#60;/p&#62;
&#60;p&#62;If you want a field that creates custom field data in post meta you must use the Post Custom Field.&#60;/p&#62;
&#60;p&#62;When you add a Post Custom Field to your form you then need to edit it and configure the custom field name.  The custom field name IS the custom field key.  This is the key that is stored in the post meta and is also the key you use for retrieving the data in your theme template.&#60;/p&#62;
&#60;p&#62;Other than Post Fields that create posts, there are no functions for showing entry data on the frontend.  You would have to write your own functionality to do this. We do plan on adding some in the future.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deanbush on "Need help displaying custom form fields in a post"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post#post-6748</link>
			<pubDate>Mon, 28 Jun 2010 00:05:13 +0000</pubDate>
			<dc:creator>deanbush</dc:creator>
			<guid isPermaLink="false">6748@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gravity forms is being used to capture the data.  (Data is being stored in the table: wp_rg_lead_detail)&#60;/p&#62;
&#60;p&#62;[gravityform id=2 name=CEHSoftware database description=false]&#60;/p&#62;
&#60;p&#62;Have been attempting to access/show the data from the postmeta using the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$custom_fields = get_post_custom();
$my_custom_field = $custom_fields[&#38;#39;CEHSoftware database&#38;#39;];
foreach ( $my_custom_field as $key =&#38;gt; $value )
echo $key . &#38;quot; =&#38;gt; &#38;quot; . $value . &#38;quot;&#38;lt;br /&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Not able to grasp any of the supposed meta data this way.  I can see the data in the admin panel just fine.  Getting it to echo out as part of the post itself is another issue.&#60;/p&#62;
&#60;p&#62;Is there anything unique or special that must be done to pull the form data out for public consumption/front end/display?&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;Dean
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Need help displaying custom form fields in a post"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post#post-6734</link>
			<pubDate>Sun, 27 Jun 2010 11:38:17 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">6734@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have never used Magic Fields. If Magic Fields uses custom fields to store data you should be able to use Gravity Forms to populate that data.  You just need to know what the custom field key is that Magic Fields uses for each field.  Then when using the Post Custom Fields on your form you would use the same key for the custom field name when adding those fields to your form.&#60;/p&#62;
&#60;p&#62;HOWEVER if all you want to do is show custom field data in your theme template you don't need a plugin to do that.  Custom Fields are built in functionality and they don't require a plugin to display in your theme.&#60;/p&#62;
&#60;p&#62;See this article:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Custom_Fields&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Custom_Fields&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deanbush on "Need help displaying custom form fields in a post"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-displaying-custom-form-fields-in-a-post#post-6708</link>
			<pubDate>Sat, 26 Jun 2010 03:01:43 +0000</pubDate>
			<dc:creator>deanbush</dc:creator>
			<guid isPermaLink="false">6708@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I want the data from the custom form fields to be viewable to the authors of each other post.&#60;/p&#62;
&#60;p&#62;gravity forms have the elegant field work down, the magic field people have an API that reveals this dat to the public - he states on his page  &#60;a href=&#34;http://magicfields.org/getting-started/&#34; rel=&#34;nofollow&#34;&#62;http://magicfields.org/getting-started/&#60;/a&#62;  &#60;/p&#62;
&#60;p&#62;To display the information to be added in our template, for that Magic Fields give us a little api for this. In our single.php file we can add this: echo get('services');&#60;/p&#62;
&#60;p&#62;Does this mean he can show the output after data entry? Do this mean I can combine the two and get what I want?&#60;/p&#62;
&#60;p&#62;So I want authors to input data and look at each other's data. I don not want to give them full administrator to view  of entries- bUt I like the look of the output for them.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
