<?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: Field Name (First and Last)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last</link>
		<description>Gravity Support Forums Topic: Field Name (First and Last)</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:23:06 +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/field-name-first-and-last" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-19066</link>
			<pubDate>Mon, 21 Feb 2011 12:24:19 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">19066@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The submit button is a Form Setting, it isn't in the POT file because it's user defined.  Edit your form, edit the form settings, go to the Advanced tab and change the submit button text to whatever you want.&#60;/p&#62;
&#60;p&#62;See this documentation:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/form-settings/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/form-settings/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vezubuhle on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-19033</link>
			<pubDate>Sun, 20 Feb 2011 07:28:35 +0000</pubDate>
			<dc:creator>vezubuhle</dc:creator>
			<guid isPermaLink="false">19033@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to translate the word &#34;Submit&#34; into French &#34;Soumettre&#34; I have looked everywhere in the forums, i have also looked in the POT and the PHP but i can't find the text to edit. &#60;/p&#62;
&#60;p&#62;Since you are doing this in Italian can you please help?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gregory on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18608</link>
			<pubDate>Tue, 15 Feb 2011 17:46:36 +0000</pubDate>
			<dc:creator>Gregory</dc:creator>
			<guid isPermaLink="false">18608@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank You Carl. It's all right now. Great!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18600</link>
			<pubDate>Tue, 15 Feb 2011 16:29:41 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">18600@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The code in that post does work, if it's not working on your end it is because you did not implement it correctly.  Here is the code you should be using.&#60;/p&#62;
&#60;p&#62;Change Last Name to Cognome:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_name_last&#38;quot;, &#38;quot;set_gravityform_lastname&#38;quot;);
function set_gravityform_lastname($label){
    return &#38;quot;Cognome&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change First Name to Nome:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_name_first&#38;quot;, &#38;quot;set_gravityform_firstname&#38;quot;);
function set_gravityform_firstname($label){
    return &#38;quot;Nome&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I implemented this on my test site and it worked fine.&#60;/p&#62;
&#60;p&#62;Screenshot of my functions.php file showing the code in place:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/8Y0h&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8Y0h&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Screenshot of my form output showing the change on the form:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/8Y0k&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8Y0k&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The code works, you just need to make sure you are implementing it properly.  It goes in your themes functions.php file as custom PHP.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gregory on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18598</link>
			<pubDate>Tue, 15 Feb 2011 16:21:21 +0000</pubDate>
			<dc:creator>Gregory</dc:creator>
			<guid isPermaLink="false">18598@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I add in function.php but it don't work:&#60;/p&#62;
&#60;p&#62;function add_filter (&#34;gform_name_last&#34;, &#34;set_gravityform_name&#34;); set_gravityform_state funzione ($ etichetta) {return &#34;Nome&#34;;}&#60;/p&#62;
&#60;p&#62;Help me, please.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gregory on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18587</link>
			<pubDate>Tue, 15 Feb 2011 14:41:14 +0000</pubDate>
			<dc:creator>Gregory</dc:creator>
			<guid isPermaLink="false">18587@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank You Carl. I try now
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18582</link>
			<pubDate>Tue, 15 Feb 2011 13:59:30 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">18582@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, these can be changed using a hook and some custom code you add to your themes functions.php file.&#60;/p&#62;
&#60;p&#62;Here is a post that discusses how to do this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/uk-specific-address-help#post-2327&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/uk-specific-address-help#post-2327&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gregory on "Field Name (First and Last)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/field-name-first-and-last#post-18573</link>
			<pubDate>Tue, 15 Feb 2011 13:28:48 +0000</pubDate>
			<dc:creator>Gregory</dc:creator>
			<guid isPermaLink="false">18573@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ciao. Can I translate &#34;first&#34; and &#34;last&#34; in field name? In italian lenguage it is &#34;nome&#34; e &#34;cognome&#34;. Which files? What am I to do? Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
