<?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: pre-populate help</title>
		<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help</link>
		<description>Gravity Support Forums Topic: pre-populate help</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 12:39:12 +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/pre-populate-help" rel="self" type="application/rss+xml" />

		<item>
			<title>stacker02 on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-30171</link>
			<pubDate>Sat, 16 Jul 2011 11:18:02 +0000</pubDate>
			<dc:creator>stacker02</dc:creator>
			<guid isPermaLink="false">30171@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, update. Thanks to illutic I found what I was missing. In your code I just needed to add &#34;value_&#34; to the first value.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;gform_field_auteur&#38;#39;,

add_filter(&#38;#39;gform_field_value_auteur&#38;#39;,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now I have the data passing correctly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stacker02 on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-30125</link>
			<pubDate>Fri, 15 Jul 2011 14:03:54 +0000</pubDate>
			<dc:creator>stacker02</dc:creator>
			<guid isPermaLink="false">30125@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;update.&#60;/p&#62;
&#60;p&#62;I have tried the custom code for calling the author´s email and it works. So it seems the it´s something with my plugin &#34;more-fields&#34; which I am using to create the product details. &#60;/p&#62;
&#60;p&#62;Not sure where to figure it out. &#60;/p&#62;
&#60;p&#62;I am willing to pay to have this figured out :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stacker02 on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-29874</link>
			<pubDate>Wed, 13 Jul 2011 05:41:26 +0000</pubDate>
			<dc:creator>stacker02</dc:creator>
			<guid isPermaLink="false">29874@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;illutic, thanks for the reply. the code is definitely making sense to me now. I wish it worked when I put it all together, but that's another story :)&#60;/p&#62;
&#60;p&#62;I wanted to start with the code. I put it in my functions.php : &#60;a href=&#34;http://tinypic.com/r/2lo3tza/7&#34; rel=&#34;nofollow&#34;&#62;http://tinypic.com/r/2lo3tza/7&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then I added the parameter in the form: &#60;a href=&#34;http://tinypic.com/r/2lb1fmw/7&#34; rel=&#34;nofollow&#34;&#62;http://tinypic.com/r/2lb1fmw/7&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But nothing. Here is the URL: &#60;a href=&#34;http://bit.ly/otVQjQ&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/otVQjQ&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Do you think it has something to do with it being in the shadowbox?&#60;/p&#62;
&#60;p&#62;Here is what the code on the page looks like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;entry-article&#38;quot;&#38;gt;
&#38;lt;div style=&#38;quot;float:left;&#38;quot;&#38;gt;
&#38;lt;?php the_post_thumbnail( &#38;#39;boeken-post-thumbnail&#38;#39; ); ?&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;div style=&#38;quot;float:left; width:350px; margin-left:15px; font-size:12px; line-height:18px;&#38;quot;&#38;gt;

&#38;lt;h1 class=&#38;quot;product&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;
&#38;lt;strong&#38;gt;Auteur:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, author, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Prijs:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;€&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, price, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;ISBN:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, isbn, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Uitgever:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, publisher, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Uitvoering:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, format, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Verschenen:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, releasedate, true); ?&#38;gt;&#38;lt;br/&#38;gt;&#38;lt;br/&#38;gt;

&#38;lt;?php echo do_shortcode(&#38;#39;[button style=&#38;quot;info&#38;quot; size=&#38;quot;small&#38;quot; color=&#38;quot;silver&#38;quot; link=&#38;quot;http://stackmacdesigns.com/clients/boek/?page_id=177&#38;quot; rel=&#38;quot;shadowbox&#38;quot;]informatie vragen[/button]&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for the feedback
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hiranthi on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-29550</link>
			<pubDate>Sat, 09 Jul 2011 16:18:10 +0000</pubDate>
			<dc:creator>Hiranthi</dc:creator>
			<guid isPermaLink="false">29550@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi stacker02,&#60;/p&#62;
&#60;p&#62;I wrote an example with the &#60;a href=&#34;http://www.pastie.org/2189138&#34; rel=&#34;nofollow&#34;&#62;author&#60;/a&#62; field. I've named the hook 'gform_field_auteur', the 'auteur' part of the hook is what you called the parameter for prepopulating that specific field.&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stacker02 on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-29540</link>
			<pubDate>Sat, 09 Jul 2011 07:38:26 +0000</pubDate>
			<dc:creator>stacker02</dc:creator>
			<guid isPermaLink="false">29540@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl, Thanks for the help on pointing this out. I been reading many articles like this but unfortunately it's all a little foreign to me even as clear as it seems. &#60;/p&#62;
&#60;p&#62;I am a visual learner so ready that code and trying to figure out how to fits to my code is hard for me to put together. Any chance I get 1 example how that might look for the code I gave then I might be able to comprehend it a bit more. &#60;/p&#62;
&#60;p&#62;Thanks!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-29483</link>
			<pubDate>Fri, 08 Jul 2011 12:56:00 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">29483@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can find a tutorial on how to dynamically populate fields in Gravity Forms here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Using_Dynamic_Population&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Using_Dynamic_Population&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stacker02 on "pre-populate help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help#post-29455</link>
			<pubDate>Fri, 08 Jul 2011 09:00:12 +0000</pubDate>
			<dc:creator>stacker02</dc:creator>
			<guid isPermaLink="false">29455@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have created a few custom meta boxes for product information using the code below:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 class=&#38;quot;product&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;
&#38;lt;strong&#38;gt;Auteur:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, author, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Prijs:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;€&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, price, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;ISBN:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, isbn, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Uitgever:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, publisher, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Uitvoering:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, format, true); ?&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;strong&#38;gt;Verschenen:&#38;lt;/strong&#38;gt;&#38;amp;nbsp;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, releasedate, true); ?&#38;gt;&#38;lt;br/&#38;gt;&#38;lt;br/&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I have a button on the WordPress page that lets you send an email to the shop to check if this product is available. What do I need to do to pre-populate the fields I have on the GF with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php the_title(); ?&#38;gt;
&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, author, true); ?&#38;gt;
&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, isbn, true); ?&#38;gt;
&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, publisher, true); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for any help!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
