<?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: Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area</title>
		<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area</link>
		<description>Gravity Support Forums Topic: Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 00:06:35 +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/few-requests-htmltext-area-duplicating-forms-editing-address-area" rel="self" type="application/rss+xml" />

		<item>
			<title>Erwin van den Boogaard on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-3323</link>
			<pubDate>Thu, 11 Feb 2010 20:27:13 +0000</pubDate>
			<dc:creator>Erwin van den Boogaard</dc:creator>
			<guid isPermaLink="false">3323@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Works like a charm!&#60;br /&#62;
Thanks Alex.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Erwin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-3310</link>
			<pubDate>Thu, 11 Feb 2010 17:25:24 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">3310@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Erwin,&#60;br /&#62;
The problem is that the is_page() function only works after a certain point in the WordPress life-cycle. Calling it directly from your functions.php will not work.&#60;br /&#62;
Try the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;loop_start&#38;quot;, &#38;quot;register_filters&#38;quot;);
function register_filters(){
    if(is_page(&#38;#39;41&#38;#39;)){
        add_filter(&#38;quot;gform_name_prefix&#38;quot;, &#38;quot;set_gravityform_name_prefix&#38;quot;);
        add_filter(&#38;quot;gform_name_first&#38;quot;, &#38;quot;set_gravityform_name_first&#38;quot;);
        add_filter(&#38;quot;gform_name_last&#38;quot;, &#38;quot;set_gravityform_name_last&#38;quot;);
        add_filter(&#38;quot;gform_name_suffix&#38;quot;, &#38;quot;set_gravityform_name_suffix&#38;quot;);
        add_filter(&#38;quot;gform_address_street&#38;quot;, &#38;quot;set_gravityform_address_street&#38;quot;);
        add_filter(&#38;quot;gform_address_street2&#38;quot;, &#38;quot;set_gravityform_address_street2&#38;quot;);
        add_filter(&#38;quot;gform_address_city&#38;quot;, &#38;quot;set_gravityform_address_city&#38;quot;);
        add_filter(&#38;quot;gform_address_state&#38;quot;, &#38;quot;set_gravityform_address_state&#38;quot;);
        add_filter(&#38;quot;gform_address_zip&#38;quot;, &#38;quot;set_gravityform_address_zip&#38;quot;);
        add_filter(&#38;quot;gform_address_country&#38;quot;, &#38;quot;set_gravityform_address_country&#38;quot;);
    }
}

function set_gravityform_name_prefix($label){
    return &#38;quot;Voorvoegsel&#38;quot;;
}

function set_gravityform_name_first($label){
    return &#38;quot;Voornaam&#38;quot;;
}

function set_gravityform_name_last($label){
    return &#38;quot;Achternaam&#38;quot;;
}

function set_gravityform_name_suffix($label){
    return &#38;quot;Achtervoegsel&#38;quot;;
}

function set_gravityform_street_address($label){
    return &#38;quot;Adres&#38;quot;;
}

function set_gravityform_address_street2($label){
    return &#38;quot;Adres (2e regel)&#38;quot;;
}

function set_gravityform_address_city($label){
    return &#38;quot;Plaats&#38;quot;;
}
function set_gravityform_address_state($label){
    return &#38;quot;Provincie/Staat&#38;quot;;
}

function set_gravityform_address_zip($label){
    return &#38;quot;Postcode&#38;quot;;
}
function set_gravityform_address_country($label){
    return &#38;quot;Land&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Erwin van den Boogaard on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-3289</link>
			<pubDate>Thu, 11 Feb 2010 04:11:01 +0000</pubDate>
			<dc:creator>Erwin van den Boogaard</dc:creator>
			<guid isPermaLink="false">3289@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Guys?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jan Egbert on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-3229</link>
			<pubDate>Tue, 09 Feb 2010 07:01:58 +0000</pubDate>
			<dc:creator>Jan Egbert</dc:creator>
			<guid isPermaLink="false">3229@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;br /&#62;</description>
		</item>
		<item>
			<title>Erwin van den Boogaard on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-3204</link>
			<pubDate>Sun, 07 Feb 2010 23:46:34 +0000</pubDate>
			<dc:creator>Erwin van den Boogaard</dc:creator>
			<guid isPermaLink="false">3204@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, I tried adding a condition tag around it and I put this in functions.php&#60;br /&#62;
the label changing works, but the is_page() doesn't. Can anybody help me point out what I'm doing wrong here?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (is_page(&#38;#39;133&#38;#39;) ) {

	// dutch translation for name field in gravity forms
	add_filter(&#38;quot;gform_name_prefix&#38;quot;, &#38;quot;set_gravityform_name_prefix&#38;quot;);
	function set_gravityform_name_prefix($label){
		return &#38;quot;Voorvoegsel&#38;quot;;
	}
	add_filter(&#38;quot;gform_name_first&#38;quot;, &#38;quot;set_gravityform_name_first&#38;quot;);
	function set_gravityform_name_first($label){
		return &#38;quot;Voornaam&#38;quot;;
	}
	add_filter(&#38;quot;gform_name_last&#38;quot;, &#38;quot;set_gravityform_name_last&#38;quot;);
	function set_gravityform_name_last($label){
		return &#38;quot;Achternaam&#38;quot;;
	}
	add_filter(&#38;quot;gform_name_suffix&#38;quot;, &#38;quot;set_gravityform_name_suffix&#38;quot;);
	function set_gravityform_name_suffix($label){
		return &#38;quot;Achtervoegsel&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_street&#38;quot;, &#38;quot;set_gravityform_address_street&#38;quot;);
	function set_gravityform_street_address($label){
		return &#38;quot;Adres&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_street2&#38;quot;, &#38;quot;set_gravityform_address_street2&#38;quot;);
	function set_gravityform_address_street2($label){
		return &#38;quot;Adres (2e regel)&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_city&#38;quot;, &#38;quot;set_gravityform_address_city&#38;quot;);
	function set_gravityform_address_city($label){
		return &#38;quot;Plaats&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_state&#38;quot;, &#38;quot;set_gravityform_address_state&#38;quot;);
	function set_gravityform_address_state($label){
		return &#38;quot;Provincie/Staat&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_zip&#38;quot;, &#38;quot;set_gravityform_address_zip&#38;quot;);
	function set_gravityform_address_zip($label){
		return &#38;quot;Postcode&#38;quot;;
	}
	add_filter(&#38;quot;gform_address_country&#38;quot;, &#38;quot;set_gravityform_address_country&#38;quot;);
	function set_gravityform_address_country($label){
		return &#38;quot;Land&#38;quot;;
	}

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Erwin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-543</link>
			<pubDate>Thu, 24 Sep 2009 15:09:28 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">543@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Nic,&#60;/p&#62;
&#60;p&#62;The hook you would use to change the address labels is a filter.  Here it is:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_address_street&#38;quot;, &#38;quot;set_gravityform_street_address&#38;quot;);
function set_gravityform_street_address($label){
    return &#38;quot;New Label&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The filter names are:&#60;/p&#62;
&#60;p&#62;gform_name_prefix&#60;br /&#62;
gform_name_first&#60;br /&#62;
gform_name_last&#60;br /&#62;
gform_name_suffix&#60;br /&#62;
gform_address_street&#60;br /&#62;
gform_address_street2&#60;br /&#62;
gform_address_city&#60;br /&#62;
gform_address_state&#60;br /&#62;
gform_address_zip&#60;br /&#62;
gform_address_country&#60;/p&#62;
&#60;p&#62;In the functions.php file for your theme you could use the filter above and depending on the language that is selected in qTranslate adjust the field labels accordingly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-542</link>
			<pubDate>Thu, 24 Sep 2009 15:01:59 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">542@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've never used qTranslate, but if you can use PHP to check to see which language is active you could certainly use the available hook to set the address related labels based on the language qTranslate has set.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nicmyers on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-541</link>
			<pubDate>Thu, 24 Sep 2009 14:55:22 +0000</pubDate>
			<dc:creator>nicmyers</dc:creator>
			<guid isPermaLink="false">541@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The problem with editing the sub labels via hooks is that they would need to change based upon what language is being displayed. I'm using qTranslate to provide language switching (&#60;a href=&#34;http://www.qianqin.de/qtranslate/&#34; rel=&#34;nofollow&#34;&#62;http://www.qianqin.de/qtranslate/&#60;/a&#62;) so maybe it is possible that I could write a function to change them based upon the currently selected language. &#60;/p&#62;
&#60;p&#62;-Nic
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-540</link>
			<pubDate>Thu, 24 Sep 2009 14:25:50 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">540@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello Nic,&#60;/p&#62;
&#60;p&#62;- You can create a terms and conditions box using a paragraph text field with a default value and a checkbox positioned below it with the checkbox set to being required.  We plan on adding a field specific for this usage in a future release.  Possibly even the next release.&#60;/p&#62;
&#60;p&#62;- The ability to duplicate forms will be part of the 1.2 release which we are working on now and will be released soon.&#60;/p&#62;
&#60;p&#62;- Sub-labels for advanced fields such as the address can be manipulated using available api hooks.  I can provide sample code if you would like.  Gravity Forms supports localization at the WordPress level, and these labels are translated using mo/po language files.  &#60;/p&#62;
&#60;p&#62;I'm not sure if you are familiar with WordPress localization, but that is what the plugin uses to handle multiple languages.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nicmyers on "Few Requests: HTML/Text Area, Duplicating Forms, Editing Address Area"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/few-requests-htmltext-area-duplicating-forms-editing-address-area#post-539</link>
			<pubDate>Thu, 24 Sep 2009 14:11:31 +0000</pubDate>
			<dc:creator>nicmyers</dc:creator>
			<guid isPermaLink="false">539@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I just purchased Gravity Forms and found a few things missing that are present in other form plugins. Maybe I overlooked something and these features are already included, if so please let me know.&#60;/p&#62;
&#60;p&#62;HTML / Text Area: Some of the forms I have to recreate for clients include a &#34;Terms and Conditions&#34; area that has a large quantity of text to be displayed within the form. I tried using the section break function but it doesn't quite work for this usage.&#60;/p&#62;
&#60;p&#62;Almost every form I have to create is really long has to be done in multiple languages. It would be great If I could create copies of one form, then edit the titles for the other languages rather than having to rebuild them for every language. I noticed that this was requested by a few others as well. A few other Wordpress form plug-ins have this functionality.&#60;/p&#62;
&#60;p&#62;Someone else mentioned this as well, but It would be nice to be able to edit the labels on the address field. It would be great for non-standard address types, as well as when translations are needed. I need to have each form in at least two languages, and not being able to edit them or switch the language on a per form basis kind of negates the benefit of having a standardized area.&#60;/p&#62;
&#60;p&#62;I tried out the demo on the site, but probably should have done it more before purchasing. It's a great plugin and I look forward to using it more in the future. &#60;/p&#62;
&#60;p&#62;-Nic
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
