<?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: alfre773</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/alfre773'>alfre773</a></link>
		<description>Gravity Support Forums User Favorites: alfre773</description>
		<language>en-US</language>
		<pubDate>Thu, 30 Apr 2026 00:08:15 +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>Chris Hajer on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-136264</link>
			<pubDate>Wed, 30 Jan 2013 08:49:17 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">136264@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The code goes in your theme's functions.php.  The &#34;This filter is located in form_display.php&#34; is an explanation of where the code is in the source if you want to take a closer look.  Your code goes in your theme's functions.php.&#60;/p&#62;
&#60;p&#62;Line 4 in your code is incorrect.  You probably want to check $lead, not $form, since you are already working with form 4 based on your add_action in line 2.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
if(($lead[&#38;quot;2&#38;quot;] == &#38;quot;Not as quickly as I expected.&#38;quot;) &#124;&#124; ($lead[&#38;quot;3&#38;quot;] == &#38;quot;Not as helpful as I&#38;#39;d have liked.&#38;quot;) &#124;&#124; ($lead[&#38;quot;4&#38;quot;] == &#38;quot;Not fully satisfied.&#38;quot;)){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That would check the answers to questions 2, 3 and 4 and compare them to the strings, and if any of them match, you get the confirmation on line 5.  Otherwise, you get the confirmation on line 8.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>406lucy on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-130577</link>
			<pubDate>Thu, 24 Jan 2013 15:25:59 +0000</pubDate>
			<dc:creator>406lucy</dc:creator>
			<guid isPermaLink="false">130577@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for that!&#60;/p&#62;
&#60;p&#62;Currently I have this for code: &#60;a href=&#34;http://pastie.org/5849981&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/5849981&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I got the redirect to work but it is working all the time and seems to be skipping past the &#34;if&#34; part. Now I cannot get it to display my text response even if there are negative answers.&#60;/p&#62;
&#60;p&#62;Lastly, I wanted to verify where the code should be inserted. Above, you say in the theme's function.php file but on the documentation page you referenced it says &#34;This filter is located in form_display.php&#34; Which is it?&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-130553</link>
			<pubDate>Thu, 24 Jan 2013 14:53:15 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">130553@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Check out this conversation about using PHP to do if/and/or statements - &#60;a href=&#34;http://www.codingforums.com/archive/index.php/t-85464.html&#34; rel=&#34;nofollow&#34;&#62;http://www.codingforums.com/archive/index.php/t-85464.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>406lucy on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-130510</link>
			<pubDate>Thu, 24 Jan 2013 13:41:29 +0000</pubDate>
			<dc:creator>406lucy</dc:creator>
			<guid isPermaLink="false">130510@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for help. The problem I am having with that is I want to redirect them if even one answer is negative, it does not have to be all three. Is the filter capable of doing an &#34;or&#34; type statement? &#60;/p&#62;
&#60;p&#62;i.e. (tailored to my situation)&#60;br /&#62;
if($form[&#34;2&#34;] == &#34;Not as quickly as I expected.&#34;) OR ($form[&#34;3&#34;] == &#34;Not as helpful as I'd have liked.&#34;) OR ($form[&#34;4&#34;] == &#34;Not fully satisfied. &#34;){&#60;br /&#62;
        $confirmation = &#34;Thanks for contacting us. We will get in touch with you soon&#34;;&#60;br /&#62;
    }&#60;br /&#62;
else{&#60;br /&#62;
        $confirmation = array(&#34;redirect&#34; =&#38;gt;&#34;http://www.mysite.com/review&#34;);&#60;br /&#62;
    }
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-130384</link>
			<pubDate>Thu, 24 Jan 2013 10:59:33 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">130384@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is the filter you would use in your theme's functions.php file:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_confirmation&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_confirmation&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Instead of testing for one thing per if statement, you would check all three. And if all three are the value you want, then you can have it redirect like in our example on that documentation page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>406lucy on "Redirect on multiple conditions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirect-on-multiple-conditions#post-129773</link>
			<pubDate>Wed, 23 Jan 2013 20:48:08 +0000</pubDate>
			<dc:creator>406lucy</dc:creator>
			<guid isPermaLink="false">129773@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have read a few similar threads but do not know enough about coding to apply to my situation...&#60;/p&#62;
&#60;p&#62;My form is on &#60;a href=&#34;http://www.precisionfirst.com/test/&#34; rel=&#34;nofollow&#34;&#62;http://www.precisionfirst.com/test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have a short (3 question) survey that I send customers to. There are 3 possible answers to each (very pleased, somewhat pleased, not at all pleased).  &#60;/p&#62;
&#60;p&#62;If customers are unhappy I simply want to say &#34;thank you.&#34; If they are happy, I would like to redirect them to a review page. Right now, I have conditional formatting set up to show the link (using an HTML box) only if none of the answers are &#34;not pleased at all&#34; (and an email address is entered). However, the link takes them away from the survey before they hit submit... I would like to only redirect AFTER they hit submit. Can someone point me in the right direction to code a rule that displays a simple message if ANY of the answers were &#34;not pleased at all&#34; and redirects to &#60;a href=&#34;http://www.precisionfirst.com/review&#34; rel=&#34;nofollow&#34;&#62;http://www.precisionfirst.com/review&#60;/a&#62; if NONE of the answers were &#34;not pleased at all.&#34;&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Add help tips next to a field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-help-tips-next-to-a-field#post-77384</link>
			<pubDate>Tue, 25 Sep 2012 21:46:02 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">77384@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We'll leave this up to priority support since you wen that route. And since this topic is over two years old, we'll close it and request that anyone who wants similar functionality start a new topic.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>finddarkpoet on "Add help tips next to a field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-help-tips-next-to-a-field#post-77230</link>
			<pubDate>Mon, 24 Sep 2012 21:21:31 +0000</pubDate>
			<dc:creator>finddarkpoet</dc:creator>
			<guid isPermaLink="false">77230@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The pastie link should work, maybe it was a temporary down when you tried.&#60;/p&#62;
&#60;p&#62;I can't paste the link here, I just sent the information again by using the Priority Support Form.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Add help tips next to a field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-help-tips-next-to-a-field#post-77105</link>
			<pubDate>Mon, 24 Sep 2012 09:09:49 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">77105@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi.  I don't receive the contact form submissions.  One of the other team members will receive that and respond to you.&#60;/p&#62;
&#60;p&#62;Pastie returned a 500 Internal Server Error for that link you posted.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>finddarkpoet on "Add help tips next to a field?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-help-tips-next-to-a-field#post-77083</link>
			<pubDate>Mon, 24 Sep 2012 05:28:43 +0000</pubDate>
			<dc:creator>finddarkpoet</dc:creator>
			<guid isPermaLink="false">77083@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris, I was wondering if you have received my link and login info.&#60;/p&#62;
&#60;p&#62;By using a line by line check, i've narrowed down and found out it is the 2nd section of script causing the form disappearing:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/4789998&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/4789998&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Please advice.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
