<?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: Post title automaticly into form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form</link>
		<description>Gravity Support Forums Topic: Post title automaticly into form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:33:58 +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/post-title-automaticly-into-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4683</link>
			<pubDate>Wed, 14 Apr 2010 00:02:35 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4683@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not sure what you mean, if you have Gravity Forms you already have the PHP.  The hooks and filters exist within the plugin code itself across multiple files.  They aren't contained in a single file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BillFishkin on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4678</link>
			<pubDate>Tue, 13 Apr 2010 22:26:47 +0000</pubDate>
			<dc:creator>BillFishkin</dc:creator>
			<guid isPermaLink="false">4678@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the clarification Carl. Any chance you could give me the next best thing, the php file where I can find reference to said hooks and filters to figure it out on my own?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4658</link>
			<pubDate>Tue, 13 Apr 2010 10:56:07 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4658@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There are a bunch of undocumented API hooks and filters that we plan on providing more documentation for in the near future.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BillFishkin on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4652</link>
			<pubDate>Tue, 13 Apr 2010 04:36:23 +0000</pubDate>
			<dc:creator>BillFishkin</dc:creator>
			<guid isPermaLink="false">4652@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The snippet given above by Jan Egbert IS NOT INCLUDED in documentation under Hooks and Filters. It took me nearly 2 hours to find this information. This should definitely be included in the documentation, as it is referenced in a gravity forms 'help bubble' but not explained anywhere other than here (unless I missed something!)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jan Egbert on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4217</link>
			<pubDate>Wed, 24 Mar 2010 11:50:35 +0000</pubDate>
			<dc:creator>Jan Egbert</dc:creator>
			<guid isPermaLink="false">4217@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The post ID is the key to everything that is related to that single post. Calling for a custom field as you are trying above will only get custom fields for the page called Inschrijven.&#60;/p&#62;
&#60;p&#62;Example: If you want to pre-populate a hidden field called price you need to enable that field to be pre-populated and add the following snippet to your themes' functions.php.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter( &#38;#39;gform_field_value_price&#38;#39;, &#38;#39;populate_price&#38;#39; );

function populate_price(){

$price = get_post_meta($_GET[&#38;quot;proefcollege&#38;quot;], &#38;quot;price&#38;quot;, true);

	return $price;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Function reference for get_post_meta() : &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_post_meta&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_post_meta&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kajrietberg on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4216</link>
			<pubDate>Wed, 24 Mar 2010 08:42:28 +0000</pubDate>
			<dc:creator>kajrietberg</dc:creator>
			<guid isPermaLink="false">4216@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Will it be possible to get beside the Post title, also get the info of a custom field that is used?&#60;/p&#62;
&#60;p&#62;That it will be something like: &#60;code&#62;&#38;lt;a href=&#38;quot;http://proefcollege.info/inschrijven-2/?proefcollege=&#38;lt;?php the_ID(); ?&#38;gt;&#38;lt;?php get_custom_field(); ?&#38;gt;&#38;quot;&#38;gt;Inschrijven&#38;lt;/a&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kajrietberg on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4168</link>
			<pubDate>Sun, 21 Mar 2010 14:04:16 +0000</pubDate>
			<dc:creator>kajrietberg</dc:creator>
			<guid isPermaLink="false">4168@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks guys,&#60;br /&#62;
I know what went wrong. I had to tell in my form the things below.&#60;/p&#62;
&#60;p&#62;Allow field to be populated dynamically (?)&#60;br /&#62;
Parameter Name:&#60;/p&#62;
&#60;p&#62;I did that and now it works!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kajrietberg on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4163</link>
			<pubDate>Sun, 21 Mar 2010 10:58:39 +0000</pubDate>
			<dc:creator>kajrietberg</dc:creator>
			<guid isPermaLink="false">4163@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have looked at it, but I don't understand what I'm doing wrong. Should I use a new form field in my form I mad that gets the url of the post?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kajrietberg on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4096</link>
			<pubDate>Wed, 17 Mar 2010 16:43:47 +0000</pubDate>
			<dc:creator>kajrietberg</dc:creator>
			<guid isPermaLink="false">4096@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@Carl, I think I do understand what you mean. I will try it. And will come back on it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Post title automaticly into form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-automaticly-into-form#post-4076</link>
			<pubDate>Wed, 17 Mar 2010 11:32:29 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4076@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Jan's example above outlines how you would do this.&#60;/p&#62;
&#60;p&#62;You have to pass the id of the post they are coming from in the link to the form, and then you would use the API hook to read that id, get the title of the post, and then populate the field with it.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
