<?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: change validation message for a specific form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form</link>
		<description>Gravity Support Forums Topic: change validation message for a specific form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 11:26:33 +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/change-validation-message-for-a-specific-form" rel="self" type="application/rss+xml" />

		<item>
			<title>RogerSWD on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72380</link>
			<pubDate>Thu, 23 Aug 2012 17:57:00 +0000</pubDate>
			<dc:creator>RogerSWD</dc:creator>
			<guid isPermaLink="false">72380@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;perfect. Thank you.&#60;/p&#62;
&#60;p&#62;I recommend having the ability to change validation message per form under Form Settings &#38;gt;&#38;gt; Advanced.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72368</link>
			<pubDate>Thu, 23 Aug 2012 17:50:10 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">72368@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Whoooooops! Try this instead:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_validation_message_2&#38;quot;, &#38;quot;change_message&#38;quot;, 10, 2);
function change_message($message, $form){
  return &#38;quot;&#38;lt;div class=&#38;#39;validation_error&#38;#39;&#38;gt;Il manque certaines données. Prière de revoir les champs indiqués en rouge.&#38;lt;/div&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>RogerSWD on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72366</link>
			<pubDate>Thu, 23 Aug 2012 17:48:03 +0000</pubDate>
			<dc:creator>RogerSWD</dc:creator>
			<guid isPermaLink="false">72366@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It works, but the style is missing?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72355</link>
			<pubDate>Thu, 23 Aug 2012 17:13:48 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">72355@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would want to do this instead:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_filter(&#38;quot;gform_validation_message_2&#38;quot;, &#38;quot;change_message&#38;quot;, 10, 2);
function change_message($message, $form){
  return &#38;quot;Il manque certaines données. Prière de revoir les champs indiqués en rouge.&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>RogerSWD on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72354</link>
			<pubDate>Thu, 23 Aug 2012 17:07:17 +0000</pubDate>
			<dc:creator>RogerSWD</dc:creator>
			<guid isPermaLink="false">72354@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here is the code added to functions.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_validation_message_2&#38;quot;, &#38;quot;Il manque certaines données. Prière de revoir les champs indiqués en rouge.&#38;quot;, 10, 2);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here is the page with the form &#60;a href=&#34;http://www.centrallia.com/fr/volunteer-registration-online-form/&#34; rel=&#34;nofollow&#34;&#62;http://www.centrallia.com/fr/volunteer-registration-online-form/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72351</link>
			<pubDate>Thu, 23 Aug 2012 16:35:13 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">72351@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post the entire code snippet you are using and link to the form please?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RogerSWD on "change validation message for a specific form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-validation-message-for-a-specific-form#post-72350</link>
			<pubDate>Thu, 23 Aug 2012 16:24:48 +0000</pubDate>
			<dc:creator>RogerSWD</dc:creator>
			<guid isPermaLink="false">72350@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I used in functions.php: add_filter(&#34;gform_validation_message_2&#34;, &#34;change_message&#34;, 10, 2);&#60;/p&#62;
&#60;p&#62;to change validation message for form ID2&#60;/p&#62;
&#60;p&#62;The validation message for this form becomes blank. The others still work.&#60;/p&#62;
&#60;p&#62;How do I change validation message for the form?&#60;/p&#62;
&#60;p&#62;Really, this should be an option in form settings like there is for every field!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
