<?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 Tag: URL - Recent Posts</title>
		<link>https://legacy.forums.gravityhelp.com/tags/url</link>
		<description>Gravity Support Forums Tag: URL - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:19:30 +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/tags/url" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Customize my own post URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-my-own-post-url#post-376049</link>
			<pubDate>Thu, 25 Jul 2013 05:44:13 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">376049@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you still require assistance with this please open a new &#60;a href=&#34;http://www.gravityhelp.com/request-support/&#34; rel=&#34;nofollow&#34;&#62;support ticket&#60;/a&#62; or a &#60;a href=&#34;http://www.gravityhelp.com/priority-support/&#34; rel=&#34;nofollow&#34;&#62;priority support ticket&#60;/a&#62; if you are a developer license holder. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luisgdelafuente on "Customize my own post URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-my-own-post-url#post-371400</link>
			<pubDate>Tue, 09 Jul 2013 14:18:27 +0000</pubDate>
			<dc:creator>luisgdelafuente</dc:creator>
			<guid isPermaLink="false">371400@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi all, excuse my english, Im from spain... I have a question. I need to customize the Post URL. it's because I use my own URL system.&#60;/p&#62;
&#60;p&#62;I have this code:&#60;/p&#62;
&#60;p&#62;function set_post_content($entry, $form){&#60;br /&#62;
    $post = get_post( $entry[&#34;post_id&#34;] );&#60;br /&#62;
    // Here I need to change or update submit URL&#60;br /&#62;
    wp_update_post($post);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Anybody know how to do it?&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "&#34;Website&#34; fields requires http://  - Why??"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/website-fields-requires-http-why#post-365168</link>
			<pubDate>Sat, 06 Jul 2013 12:11:05 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">365168@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/website-field-not-validating-without-http&#34; rel=&#34;nofollow&#34;&#62;This thread&#60;/a&#62; includes an option for automatically adding a protocol (e.g., http:// ) if the user omits it. One disadvantage of the approach is that it instructs the browser to not validate any of the fields for the form, leaving all validation up to the Gravity Forms. An advantage, however, is that the approach leaves HTML5 on, which may conveniently bring up &#60;a href=&#34;http://stackoverflow.com/questions/3090369/disable-validation-of-html5-form-elements&#34; rel=&#34;nofollow&#34;&#62;custom keyboards on mobile devices&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "Website field - not validating without http://"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/website-field-not-validating-without-http#post-350777</link>
			<pubDate>Fri, 28 Jun 2013 20:53:19 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">350777@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;u&#62;UPDATE #2&#60;/u&#62;&#60;br /&#62;
My code above works for a website field, but not for a post custom field whose type is set to website. In the latter case, $field['type'] is 'post_custom_field' instead of 'website'. However, in both cases, $field['inputType'] is 'website', so we can use it instead. Given that $field['inputType'] is not set for all fields (e.g., honeypot), we'll include an isset() check to avoid the php &#34;Notice: Undefined Index&#34;. So...&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Replace line 8 above (&#60;strike&#62;$types[] = $field['type'];&#60;/strike&#62;) with&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ( isset($field[&#38;#39;inputType&#38;#39;]) )
  $types[] = $field[&#38;#39;inputType&#38;#39;];&#60;/code&#62;&#60;/pre&#62;
&#60;/li&#62;
&#60;li&#62;Then replace line 31 above (&#60;strike&#62;if ( 'website' != $field['type'] )&#60;/strike&#62;) with&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ( ! isset($field[&#38;#39;inputType&#38;#39;]) &#124;&#124; &#38;#39;website&#38;#39; != $field[&#38;#39;inputType&#38;#39;] )&#60;/code&#62;&#60;/pre&#62;
&#60;/li&#62;
&#60;/ol&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Use field values in URL when redirecting after form submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-field-values-in-url-when-redirecting-after-form-submission#post-334473</link>
			<pubDate>Thu, 20 Jun 2013 10:54:22 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">334473@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No worries, glad to help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>motto on "Use field values in URL when redirecting after form submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-field-values-in-url-when-redirecting-after-form-submission#post-333829</link>
			<pubDate>Thu, 20 Jun 2013 04:42:17 +0000</pubDate>
			<dc:creator>motto</dc:creator>
			<guid isPermaLink="false">333829@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Rob,&#60;/p&#62;
&#60;p&#62;Thanks a lot for your reply, and my apologies for my short sightedness, just using&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;&#60;a href=&#34;http://domain.ext/orders/&#34; rel=&#34;nofollow&#34;&#62;http://domain.ext/orders/&#60;/a&#62;{5:idfield}/&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;in the URL field, having the option Redirect checked and without checking the query string checkbox works like a charm.&#60;/p&#62;
&#60;p&#62;It just wasn't clear to me I could use the field value placeholders in the URL.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Use field values in URL when redirecting after form submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-field-values-in-url-when-redirecting-after-form-submission#post-332427</link>
			<pubDate>Wed, 19 Jun 2013 14:24:34 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">332427@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;See if this does the trick for you:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/query-string-without-the-passing-a-leading-question-mark#post-46351&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/query-string-without-the-passing-a-leading-question-mark#post-46351&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Or perhaps this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/use-gravity-forms-to-search-for-tags#post-104478&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/use-gravity-forms-to-search-for-tags#post-104478&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "&#34;Website&#34; fields requires http://  - Why??"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/website-fields-requires-http-why#post-331974</link>
			<pubDate>Wed, 19 Jun 2013 09:40:59 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">331974@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The url type input the Gravity Forms developers are using is implemented as per the W3C HTML5 standard, it is the browser that requires the http:// to be entered by the user for it to pass validation, the faint http:// that disappears when the user starts typing in the input is called a placeholder and again that is how HTML5 placeholders work.  If you want the http:// to remain in place I would recommend you go to the Gravity Forms general settings page and switch 'Output HTML5' to 'No'.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>co50 on "&#34;Website&#34; fields requires http://  - Why??"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/website-fields-requires-http-why#post-330856</link>
			<pubDate>Tue, 18 Jun 2013 21:05:36 +0000</pubDate>
			<dc:creator>co50</dc:creator>
			<guid isPermaLink="false">330856@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The Special 'website' field requires the user to enter http://. This makes no sense. Can't the system just add it on for them if it's required on the backend for some reason?&#60;/p&#62;
&#60;p&#62;This form field has a lot of issues:&#60;/p&#62;
&#60;p&#62;1) If you put in http:// as the default text and they have no web site, they get an error unless they manually remove it.&#60;br /&#62;
2) If they have a web site, even though the form shows a faint http:// in the field, it gets erased as soon as the user starts typing. One would think since it's required it would remain there and the user's text would proceed it.&#60;br /&#62;
3) There is no way to turn of validation for this field to eliminate these issues or allow the user to enter 'None'.&#60;br /&#62;
4) The Validation Message override does not work. It just says &#34;Enter a URL&#34; as the error even if a custom message is included...you know, to tell them they have to enter http:// or remove the one thats there. (Avoiding adding as a descr to keep things clean)&#60;br /&#62;
5) Yes, using a regular text field is an alternative, but I'd love for the Gravity Folks to get the website field fixed up.&#60;/p&#62;
&#60;p&#62;Thanks guys.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ssr on "Paypal returning URL (Success)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/paypal-returning-url-success#post-330336</link>
			<pubDate>Tue, 18 Jun 2013 12:19:25 +0000</pubDate>
			<dc:creator>ssr</dc:creator>
			<guid isPermaLink="false">330336@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the tip unfortunately that does not work either.  According to the thread this should work.  I know it works fine with Cart 66 not sure why this Add-On will not work.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
