<?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 &#34;submit&#34; to &#34;something else&#34;</title>
		<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else</link>
		<description>Gravity Support Forums Topic: change &quot;submit&quot; to &quot;something else&quot;</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:56:10 +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-submit-to-something-else" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-201278</link>
			<pubDate>Mon, 08 Apr 2013 12:49:41 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">201278@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for the update.  It's nice to hear from a theme developer like that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-195318</link>
			<pubDate>Wed, 03 Apr 2013 08:07:40 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">195318@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris - again thank you and Richard for all your help on this. I did forward this topic to the theme author. Here is his reply:&#60;/p&#62;
&#60;p&#62;Hello Michael,&#60;/p&#62;
&#60;p&#62;Thank you very much for bringing this to our attention.&#60;/p&#62;
&#60;p&#62;Actually this filter is used for wpCasa Child Themes, whereas we can customize the styling through it by appending specific classes. But yes, you (and GravityForms) are probably right that we shouldn’t limit the functionality of the plugin by theme specific PHP. I’ll pass this on to our development team to see what they can come up with in the next version of wpCasa.&#60;/p&#62;
&#60;p&#62;Again, thank you very much&#60;/p&#62;
&#60;p&#62;All the best,&#60;br /&#62;
Joe [wpCasa]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194760</link>
			<pubDate>Tue, 02 Apr 2013 20:03:07 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">194760@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris. It was easy enough (with your help) to comment out the single appropriate line in the helpers.php - and it did eliminate the problem of the incorrect naming of the button - however, it also eliminated all the styling of the button that I had in place - styling that matched all the other (theme) buttons. In looking more closely at the appropriate code in the helpers.php I noticed it said 'submit message' - which is what it was defaulting to - so I simply changed it to 'submit' which is what I want the button to say. So this fixed my immediate problem, but I do understand that there may be unwanted functionality built into the theme and I will contact the theme's support - especially since they recommend Gravity Forms. Thanks again, MM
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194500</link>
			<pubDate>Tue, 02 Apr 2013 13:22:17 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">194500@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK - will let you know how I make out. Thanks, MM
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194485</link>
			<pubDate>Tue, 02 Apr 2013 12:54:23 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">194485@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can comment out this single line if you want:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
add_filter( &#38;#39;gform_submit_button&#38;#39;, &#38;#39;form_submit_button&#38;#39;, 10, 2 );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to make it look like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
// add_filter( &#38;#39;gform_submit_button&#38;#39;, &#38;#39;form_submit_button&#38;#39;, 10, 2 );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And that will stop the function from being called.  The function will still be present.  Richard showed you a way to comment out all 6 lines.&#60;/p&#62;
&#60;p&#62;A theme update will wipe out your changes.  You should always use a Child Theme in that case, so your customizations are never overwritten.    If you don't want to use a child theme, you will have to maintain your changes after upgrading the theme,&#60;/p&#62;
&#60;p&#62;You might also contact the theme author for their support, since they are providing functionality you do not want, and not making it easy to remove.  Changing the submit button text is easy enough in the form builder: I'm not sure why the do it with a function in an included PHP file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194373</link>
			<pubDate>Tue, 02 Apr 2013 10:39:18 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">194373@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for replying Richard. OK understand where to find the lines of code. However, it seems that Chris is instructing me to comment out SINGLE lines (assuming in both lines 329 and 1781). Are you saying the whole group of lines (1 thru6) should be commented out ? (assuming in both lines 329 and 1781). Also, once I do this correctly - will a theme update affect these changes? Really appreciate the help. Thanks, MM
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194352</link>
			<pubDate>Tue, 02 Apr 2013 10:18:18 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">194352@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Chris provided the file locations in his response above but you should find in the folder that contains your theme a folder named lib, inside this folder you should find another folder named functions, inside this folder you will find the files helpers.php and properties.php&#60;/p&#62;
&#60;p&#62;To comment out a single line of php code you can just place two forward slashes // at the beginning of the line but as you are commenting out a multiple lines you can use the css comment method of placing /* at the start of the commented section and placing  */ at the end like so&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* add_filter( &#38;#39;gform_submit_button&#38;#39;, &#38;#39;form_submit_button&#38;#39;, 10, 2 );

function form_submit_button( $output, $form ){

    return &#38;#39;&#38;lt;input name=&#38;quot;submit&#38;quot; type=&#38;quot;submit&#38;quot; id=&#38;quot;submit&#38;quot; class=&#38;quot;gform_submit_button_&#38;#39; . $form[&#38;quot;id&#38;quot;] . &#38;#39;&#38;quot; value=&#38;quot;&#38;#39; . __( &#38;#39;Submit message&#38;#39;, &#38;#39;wpcasa&#38;#39; ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
} */&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-194228</link>
			<pubDate>Tue, 02 Apr 2013 08:22:11 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">194228@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello Chris - I appreciate you digging into this deeper.&#60;br /&#62;
So first:&#60;br /&#62;
1. where is helpers.php? - I'm assuming this is accessed through the FTP? - as I don't see it anywhere in the WP editor of the child or parent theme&#60;br /&#62;
2. not sure what you mean by &#34;comment out&#34; - need further instruction&#60;/p&#62;
&#60;p&#62;Thanks, MM
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-193846</link>
			<pubDate>Tue, 02 Apr 2013 01:29:48 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">193846@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Take a look at these two files:&#60;br /&#62;
wp-content/themes/wpcasa/lib/functions/helpers.php line 329&#60;br /&#62;
wp-content/themes/wpcasa/lib/functions/properties.php line 1781&#60;/p&#62;
&#60;p&#62;This is the code from helpers.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
add_filter( &#38;#39;gform_submit_button&#38;#39;, &#38;#39;form_submit_button&#38;#39;, 10, 2 );

function form_submit_button( $output, $form ){

    return &#38;#39;&#38;lt;input name=&#38;quot;submit&#38;quot; type=&#38;quot;submit&#38;quot; id=&#38;quot;submit&#38;quot; class=&#38;quot;gform_submit_button_&#38;#39; . $form[&#38;quot;id&#38;quot;] . &#38;#39;&#38;quot; value=&#38;quot;&#38;#39; . __( &#38;#39;Submit message&#38;#39;, &#38;#39;wpcasa&#38;#39; ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you comment out that &#34;add_filter&#34; line, your button text will not be overridden.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clarendonsite on "change &#34;submit&#34; to &#34;something else&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-submit-to-something-else#post-193214</link>
			<pubDate>Mon, 01 Apr 2013 15:11:58 +0000</pubDate>
			<dc:creator>clarendonsite</dc:creator>
			<guid isPermaLink="false">193214@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Chris - will send admin info momentarily. Interestingly, it is incorrect in the preview! Can't check using a stock theme as the theme I'm using is almost entirely widget based - so doesn't translate well to the stock templates - and can't access the page. Appreciate your help! MM
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
