<?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: Confirmation text fade or slide?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide</link>
		<description>Gravity Support Forums Topic: Confirmation text fade or slide?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 07:13:04 +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/confirmation-text-fade-or-slide" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-75108</link>
			<pubDate>Thu, 13 Sep 2012 09:02:39 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75108@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I think you want to use the gform_confirmation_anchor to take control of that:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_confirmation_anchor&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_confirmation_anchor&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onyx808 on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-75061</link>
			<pubDate>Wed, 12 Sep 2012 22:42:18 +0000</pubDate>
			<dc:creator>onyx808</dc:creator>
			<guid isPermaLink="false">75061@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you Chris!&#60;/p&#62;
&#60;p&#62;is there any way to stop it from moving to the top of the page? when you submit it shows the loading circle spinning next to the submit and then it snaps to the top of the page and then slides down the confirmation text.&#60;/p&#62;
&#60;p&#62;If I could stop it from snapping to the top of the page it will be perfect!&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-75048</link>
			<pubDate>Wed, 12 Sep 2012 22:12:13 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75048@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure.  You can use the jQuery slow method, or any other jQuery effect you like.  There are a couple parts to the solution.&#60;/p&#62;
&#60;p&#62;1.  Hide the .gform_confirmation_message by using &#60;strong&#62;display:none;&#60;/strong&#62; in your theme's stylesheet.  This is the code for form 3 in my installation:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
div.gform_confirmation_message_3 {
    display:none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2.  We're going to use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_confirmation_loaded&#34; rel=&#34;nofollow&#34;&#62;gform_confirmation_loaded&#60;/a&#62; hook, so be sure you enabled AJAX when you embedded the form.  Add this to your existing shortcode if you are not currently using AJAX:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
ajax=&#38;quot;true&#38;quot;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3.  Create a script called slow-confirmation.js and save it in the js folder of your child theme.  Put this into that script (be sure to hover over this code block and click the &#60;strong&#62;&#38;lt;&#38;gt; &#34;view source&#34;&#60;/strong&#62; to see the full code):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[js]
jQuery(document).bind(&#38;#39;gform_confirmation_loaded&#38;#39;, function(){
    jQuery(&#38;#39;#gforms_confirmation_message&#38;#39;).slideDown(&#38;#39;slow&#38;#39;);
});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;4. Add this to your theme's functions.php to enqueue the script which you named slow-confirmation.js and saved in the js folder of your child theme. If you placed the script elsewhere or named it something else, adjust these values.  Change the &#34;3&#34; here to your form ID.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
add_action(&#38;#39;gform_enqueue_scripts_3&#38;#39;, &#38;#39;enqueue_slow_slide&#38;#39;, 10, 2);
function enqueue_slow_slide($form, $is_ajax) {
    // enqueue the slow slide script which is bound to the gform_confirmation_loaded event.  Located in the child theme /js/ subdirectory. Depends on jQuery
    wp_enqueue_script(&#38;#39;slow-confirmation&#38;#39;, get_stylesheet_directory_uri() . &#38;#39;/js/slow-confirmation.js&#38;#39;, array(&#38;#39;jquery&#38;#39;));
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Example: &#60;a href=&#34;http://gravity.chrishajer.com/country-of-origin/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/country-of-origin/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onyx808 on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-75014</link>
			<pubDate>Wed, 12 Sep 2012 17:17:59 +0000</pubDate>
			<dc:creator>onyx808</dc:creator>
			<guid isPermaLink="false">75014@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.onyxsolution.com&#34; rel=&#34;nofollow&#34;&#62;http://www.onyxsolution.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-74920</link>
			<pubDate>Wed, 12 Sep 2012 00:41:59 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74920@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post a link to your site please so we can see this in action?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onyx808 on "Confirmation text fade or slide?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/confirmation-text-fade-or-slide#post-74769</link>
			<pubDate>Tue, 11 Sep 2012 05:16:14 +0000</pubDate>
			<dc:creator>onyx808</dc:creator>
			<guid isPermaLink="false">74769@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Im using the confirmation text on my contact form and after the user submits it does some kind of refresh or something and it displays the confirmation text, at the moment I seems to snappy, can this be done a little more gracefully? like fading out the form and fading in the confirmation text or after submission slide in the confirmation text?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
