<?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: How can I change the message displayed when required fields empty</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty</link>
		<description>Gravity Support Forums Topic: How can I change the message displayed when required fields empty</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Apr 2026 18:22:02 +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/how-can-i-change-the-message-displayed-when-required-fields-empty" rel="self" type="application/rss+xml" />

		<item>
			<title>Trisha on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-34301</link>
			<pubDate>Fri, 02 Sep 2011 19:36:10 +0000</pubDate>
			<dc:creator>Trisha</dc:creator>
			<guid isPermaLink="false">34301@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Seems like this is a reasonable request - to change the general form validation message - why not consider making this an option in a future upgrade?  I see where I can set the Form's Description and Confirmation Message, so why not allow me to set my own Validation (error) Message too?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9802</link>
			<pubDate>Mon, 13 Sep 2010 13:05:53 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">9802@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You never want to edit the core plugin files if you ever plan on updating to the latest version of Gravity Forms because any changes you make will be overwritten by the update.&#60;/p&#62;
&#60;p&#62;The API hooks are there to allow you to change the functionality of Gravity Forms WITHOUT having to edit the plugin files themselves.  This makes updates seamless so you can upgrade without overwriting your changes.&#60;/p&#62;
&#60;p&#62;We always recommend users make changes using the API hooks and placing the code in the functions.php file for their theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>STB on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9800</link>
			<pubDate>Mon, 13 Sep 2010 12:54:27 +0000</pubDate>
			<dc:creator>STB</dc:creator>
			<guid isPermaLink="false">9800@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Kevin.&#60;/p&#62;
&#60;p&#62;I found you can also just change the message in  form_display.php.&#60;/p&#62;
&#60;p&#62;Would there be any advantage of adding the filter to functions.php, over directly editing the message in form_display.php?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9759</link>
			<pubDate>Sun, 12 Sep 2010 18:52:52 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9759@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;you add the code snippet to your theme's functions.php file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>STB on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9754</link>
			<pubDate>Sun, 12 Sep 2010 17:01:13 +0000</pubDate>
			<dc:creator>STB</dc:creator>
			<guid isPermaLink="false">9754@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Was looking for the same,&#60;/p&#62;
&#60;p&#62;@Carl Hankcock&#60;br /&#62;
Thanks, but ..  this code goes where?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9748</link>
			<pubDate>Sun, 12 Sep 2010 14:01:57 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">9748@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can change the message for individual form fields by editing the field, going to the Advanced tab and customizing the validation message.&#60;/p&#62;
&#60;p&#62;However the message you referenced above is the form wide validation message.  Currently this can only be customized by a filter using PHP.  Here is an example of the filter you would use to do this:&#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;Failed Validation - &#38;quot; . $form[&#38;quot;title&#38;quot;];
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>natash on "How can I change the message displayed when required fields empty"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-change-the-message-displayed-when-required-fields-empty#post-9740</link>
			<pubDate>Sun, 12 Sep 2010 12:56:37 +0000</pubDate>
			<dc:creator>natash</dc:creator>
			<guid isPermaLink="false">9740@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;On my forms, I have required fields. When there are empty, the following message is displayed : &#60;/p&#62;
&#60;p&#62;There was a problem with your submission.&#60;br /&#62;
Errors have been highlighted below &#60;/p&#62;
&#60;p&#62;How can I change this message ?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
