<?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: Validation Error Language</title>
		<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje</link>
		<description>Gravity Support Forums Topic: Validation Error Language</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:27:36 +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/validation-error-languaje" rel="self" type="application/rss+xml" />

		<item>
			<title>vixvii on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-16403</link>
			<pubDate>Mon, 17 Jan 2011 03:09:11 +0000</pubDate>
			<dc:creator>vixvii</dc:creator>
			<guid isPermaLink="false">16403@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for this, it really helped me. Just something I noticed is that when you use the given php code to change the default message, the new message isn't styled in any way :&#60;/p&#62;
&#60;p&#62;... &#38;lt;div class='gform_heading'&#38;gt;&#60;br /&#62;
                            &#38;lt;h3 class='gform_title'&#38;gt;&#38;lt;/h3&#38;gt;&#60;br /&#62;
                            &#38;lt;span class='gform_description'&#38;gt;&#38;lt;/span&#38;gt;&#60;br /&#62;
                        &#38;lt;/div&#38;gt;Please make sure all highlighted fields are correct&#60;br /&#62;
                        &#38;lt;div class='gform_body'&#38;gt; ...&#60;/p&#62;
&#60;p&#62;I added a custom style to the php code in order to make the message display correctly, but I am sure this is a bug and it should actually be displaying inside of the &#38;lt;h3&#38;gt; tag?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15987</link>
			<pubDate>Tue, 11 Jan 2011 15:41:58 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">15987@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can try this.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/1449520&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/1449520&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15982</link>
			<pubDate>Tue, 11 Jan 2011 14:54:29 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15982@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Custom Message:&#60;br /&#62;
No pudimos enviar tu mensaje.&#60;br /&#62;
Los errores están destacados.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15981</link>
			<pubDate>Tue, 11 Jan 2011 14:53:07 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15981@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Im Scared of That, Lol. Already Screw my site once this way.&#60;/p&#62;
&#60;p&#62;This is my functions.php&#60;br /&#62;
Can you add it where it should be please?&#60;/p&#62;
&#60;p&#62;Thanks!!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/1449504&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/1449504&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15823</link>
			<pubDate>Mon, 10 Jan 2011 09:24:39 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">15823@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can't change the text via CSS. It's in the markup and you have to use the filter or a translation file to change it.&#60;/p&#62;
&#60;p&#62;Most likely you just need to remove the &#38;lt;?php ?&#38;gt; from around the snippet when you add it to your functions.php file because those already exist.  Just configure/add this part.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_validation_message&#38;quot;, &#38;quot;change_message&#38;quot;, 10, 2);
function change_message($message, $form){
return &#38;quot;Your Custom Validation Message Here&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15819</link>
			<pubDate>Mon, 10 Jan 2011 08:35:27 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15819@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Solve it, Thanks good my hosting is from a friend that backup and restore my files.&#60;/p&#62;
&#60;p&#62;Where in CSS I can change the text?&#60;br /&#62;
Would not like to touch functions.php
&#60;/p&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15817</link>
			<pubDate>Mon, 10 Jan 2011 08:01:33 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15817@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I try changing in my Cpnal de functions.php file to the original one… but still no solution. Please Help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15815</link>
			<pubDate>Mon, 10 Jan 2011 07:33:28 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15815@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OMG! I added that yo My site and Tottaly Screw it!&#60;br /&#62;
&#60;a href=&#34;http://www.arriendolocales.cl&#34; rel=&#34;nofollow&#34;&#62;http://www.arriendolocales.cl&#60;/a&#62;&#60;br /&#62;
Now don`t have a clue how to fix it, I Upladed the Old Functions.php… and it says more errors :S Wat Can i Do!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15785</link>
			<pubDate>Sun, 09 Jan 2011 23:31:10 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">15785@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Which validation error message are you referring to?  Validation messages for individual fields can be changed by editing those fields in the form builder and selecting the Advanced tab.&#60;/p&#62;
&#60;p&#62;The validation message that appears at the top of the form can be changed by creating a Spanish translation file for the Gravity Forms plugin using PO Edit.  It's designed to be localized via translation files.&#60;/p&#62;
&#60;p&#62;If you don't want to translate Gravity Forms you can also change the primary validation message with a simple code snippet you add to your themes functions.php file.&#60;/p&#62;
&#60;p&#62;Here is what the code to change the validation message looks like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_filter(&#38;quot;gform_validation_message&#38;quot;, &#38;quot;change_message&#38;quot;, 10, 2);
function change_message($message, $form){
return &#38;quot;Your Custom Validation Message Here&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You would place that code in the functions.php file of your theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>magonicolas on "Validation Error Language"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validation-error-languaje#post-15767</link>
			<pubDate>Sun, 09 Jan 2011 21:49:05 +0000</pubDate>
			<dc:creator>magonicolas</dc:creator>
			<guid isPermaLink="false">15767@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello, how are you?&#60;br /&#62;
I Read in other post that you can easily change de Valdition error Message.&#60;br /&#62;
That you need to edit it in CSS right?&#60;br /&#62;
Can someone tell me in which File I can edit it please?&#60;br /&#62;
I neeed to change it to spanish.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
