<?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: Presale questions: Hooks/API, Add ons and multi-lingual forms</title>
		<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms</link>
		<description>Gravity Support Forums Topic: Presale questions: Hooks/API, Add ons and multi-lingual forms</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 22:35:24 +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/presale-questions-hooksapi-add-ons-and-multi-lingual-forms" rel="self" type="application/rss+xml" />

		<item>
			<title>Tzaddi on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-16424</link>
			<pubDate>Mon, 17 Jan 2011 12:42:25 +0000</pubDate>
			<dc:creator>Tzaddi</dc:creator>
			<guid isPermaLink="false">16424@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Perfect, that's the one I needed.  Thanks David!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-16417</link>
			<pubDate>Mon, 17 Jan 2011 10:50:43 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16417@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Zodzilla, you're probably looking for the &#60;strong&#62;gform_post_submission&#60;/strong&#62; hook which passes the saved form data as an $entry object. Here is an example of the hook being used to modify the post content after submission:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_action(&#38;quot;gform_post_submission&#38;quot;, &#38;quot;set_post_content&#38;quot;, 10, 2);
function set_post_content($entry, $form){

    //getting post
    $post = get_post($entry[&#38;quot;post_id&#38;quot;]);

    //changing post content
    $post-&#38;gt;post_content = &#38;quot;Blender Version:&#38;quot; . $entry[7] . &#38;quot;&#38;lt;br/&#38;gt; &#38;lt;img src=&#38;#39;&#38;quot; . $entry[8] . &#38;quot;&#38;#39;&#38;gt; &#38;lt;br/&#38;gt; &#38;lt;br/&#38;gt; &#38;quot; . $entry[13] . &#38;quot; &#38;lt;br/&#38;gt; &#38;lt;img src=&#38;#39;&#38;quot; . $entry[5] . &#38;quot;&#38;#39;&#38;gt;&#38;quot;;

    //updating post
    wp_update_post($post);
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Tzaddi on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-16405</link>
			<pubDate>Mon, 17 Jan 2011 03:59:33 +0000</pubDate>
			<dc:creator>Tzaddi</dc:creator>
			<guid isPermaLink="false">16405@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What hook allows you to access data after the form is saved?  Specifically I need to know the ID of the post (a custom post type in my case) created by the submitted form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-11937</link>
			<pubDate>Tue, 02 Nov 2010 11:11:00 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">11937@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@senlin I also think a form for each language makes more sense that way you keep the entries separate in case you have different people responding for each language.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Piet on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-11924</link>
			<pubDate>Tue, 02 Nov 2010 04:41:11 +0000</pubDate>
			<dc:creator>Piet</dc:creator>
			<guid isPermaLink="false">11924@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am currently using your forms in a (WPML) multilingual environment and it works perfect! 2 different forms, same content, different language and it all shows up neatly in the admin. &#60;/p&#62;
&#60;p&#62;I actually think that having two different forms works out fine as you can immediately see how many entries you have for each language...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-10636</link>
			<pubDate>Thu, 30 Sep 2010 21:44:23 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">10636@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We are going to look into how we can tackle the multi-language issue.  WordPres doesn't handle it natively and most of the solutions for it such as WPML tackle it in a variety of ways. There is no standard way to handle it... but it's something we would certainly like to find a good solution for.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brocheafoin on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-10633</link>
			<pubDate>Thu, 30 Sep 2010 20:03:55 +0000</pubDate>
			<dc:creator>brocheafoin</dc:creator>
			<guid isPermaLink="false">10633@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Carl,&#60;/p&#62;
&#60;p&#62;Thanks for the quick answers. #1 and #2 sound good. I kind of expected answer #3, but I think I can live with it. Maybe you could consider this for a future release? Some sort of &#34;child forms&#34; where entries all end up in the same place in the admin. This could solve the multilingual problem elegantly and allow other possibilites.&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-10630</link>
			<pubDate>Thu, 30 Sep 2010 17:47:07 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">10630@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;1. Yes there are extensive hooks built into Gravity Forms so you can do all sorts of customizations with it by taking advantage of these hooks and filters just like you can with WordPress.&#60;/p&#62;
&#60;p&#62;2. The MailChimp and Campaign Monitor add-ons allow you to integrate any form with MailChimp and Campaign Monitor.  It allows you t map form fields to their corresponding MailChimp or Campaign Monitor fields so that when a form is submitted on your site, data is passed to these services to add subscribers and data to your mailing lists with MailChimp and Campaign Monitor.&#60;/p&#62;
&#60;p&#62;3. Currently multiple forms cannot feed data to one forms entries.  All form data is stored in the same location, however it is tied to a form id.  Each form has it's own id.  So right now if you have a form for each language, the entries are going to be tied to each individual form.   They aren't spread out in the DB, they are stored in the same place... they are just tied to  specific form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brocheafoin on "Presale questions: Hooks/API, Add ons and multi-lingual forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/presale-questions-hooksapi-add-ons-and-multi-lingual-forms#post-10628</link>
			<pubDate>Thu, 30 Sep 2010 17:08:29 +0000</pubDate>
			<dc:creator>brocheafoin</dc:creator>
			<guid isPermaLink="false">10628@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;This plugin looks really good. I can see where it would fit nicely in a lot of my projects. I have just a few questions before I whip out my credit card:&#60;/p&#62;
&#60;p&#62;1. Does the plugin provide hooks or an API that allow a developer like me to do additional processing to the submitted data before and after it is saved?&#60;/p&#62;
&#60;p&#62;2. What do the MailChimp and CampaignMonitor add-ons actually do?&#60;/p&#62;
&#60;p&#62;3. Is there a way to have two different forms insert their entries at the same place in the database?&#60;/p&#62;
&#60;p&#62;A little bit more about #3. I'm running a few multilingual sites. As far as I understand from reading the forums, the easiest way to have a form show up in many languages for the end user is to create one form for each language. Except in that case, the entries would end up spread out in the DB and the admin section. Is there any workaround for this?&#60;/p&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
