<?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 User Favorites: wordpressuser</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/wordpressuser'>wordpressuser</a></link>
		<description>Gravity Support Forums User Favorites: wordpressuser</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:07:37 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-216804</link>
			<pubDate>Sat, 20 Apr 2013 07:10:02 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">216804@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;To make the function apply to all forms you would remove the form id from the end of the hook name like so&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;gform_pre_render&#38;#39;, &#38;#39;disable_submit&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard&#60;br /&#62;
--&#60;br /&#62;
Just another member of the community helping out where I can
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wordpressuser on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-216466</link>
			<pubDate>Sat, 20 Apr 2013 04:21:34 +0000</pubDate>
			<dc:creator>wordpressuser</dc:creator>
			<guid isPermaLink="false">216466@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If I understand what you are saying for disabling the submit button on submission action on multiple forms.... should it look like the following?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;gform_pre_render_ID#1&#38;#39;, &#38;#39;disable_submit&#38;#39;);
add_filter(&#38;#39;gform_pre_render_ID#2&#38;#39;, &#38;#39;disable_submit&#38;#39;);
add_filter(&#38;#39;gform_pre_render_ID#3&#38;#39;, &#38;#39;disable_submit&#38;#39;);
function disable_submit($form) {
    ?&#38;gt;

    &#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
    jQuery(document).ready(function($){
        $(&#38;#39;#gform_submit_button_&#38;lt;?php echo $form[&#38;#39;id&#38;#39;]; ?&#38;gt;&#38;#39;).on(&#38;#39;click&#38;#39;, function(event){

            var submitCopy = $(this).clone();
            submitCopy.prop(&#38;#39;id&#38;#39;, &#38;#39;&#38;#39;).prop(&#38;#39;disabled&#38;#39;, true).prop(&#38;#39;value&#38;#39;, &#38;#39;Processing...&#38;#39;).insertAfter($(this));

            $(this).hide();

        });
    });
    &#38;lt;/script&#38;gt;

    &#38;lt;?php
    return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Is there a way to make the default function for all forms?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214536</link>
			<pubDate>Thu, 18 Apr 2013 13:13:23 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">214536@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would add another filter with the form number changed:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;gform_pre_render_116&#38;#39;, &#38;#39;disable_submit&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Dandut86 on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214527</link>
			<pubDate>Thu, 18 Apr 2013 13:05:19 +0000</pubDate>
			<dc:creator>Dandut86</dc:creator>
			<guid isPermaLink="false">214527@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Inserted the code and tested the form.  It works!  One more question, what would I do if I wanted to do the same thing for another form on our system?  &#60;/p&#62;
&#60;p&#62;Thanks for the help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214522</link>
			<pubDate>Thu, 18 Apr 2013 12:45:10 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">214522@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Put line 2 - 23 of our snippet in line 28 of yours.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dandut86 on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214521</link>
			<pubDate>Thu, 18 Apr 2013 12:32:31 +0000</pubDate>
			<dc:creator>Dandut86</dc:creator>
			<guid isPermaLink="false">214521@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We get applications constantly throughout the day so I deleted the suggested snippet because people couldnt get to the application.  I was hoping you could point out where I need to put the code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214519</link>
			<pubDate>Thu, 18 Apr 2013 12:30:24 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">214519@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't see the snippet that you were given in that file. What error are you seeing currently?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dandut86 on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214502</link>
			<pubDate>Thu, 18 Apr 2013 12:19:37 +0000</pubDate>
			<dc:creator>Dandut86</dc:creator>
			<guid isPermaLink="false">214502@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://pastebin.com/qEPZdeNR&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/qEPZdeNR&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214486</link>
			<pubDate>Thu, 18 Apr 2013 12:05:12 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">214486@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, please paste it on pastebin and link it here.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dandut86 on "Numerous instances of Multiple Charges - NEED HELP!! - Refunding lots of charges"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/numerous-instances-of-multiple-charges-need-help-refunding-lots-of-charges#post-214478</link>
			<pubDate>Thu, 18 Apr 2013 11:56:03 +0000</pubDate>
			<dc:creator>Dandut86</dc:creator>
			<guid isPermaLink="false">214478@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Just tried it and got a new error.  Would you like me to paste my functions file?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
