<?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: Multipage Form with Unique URLs</title>
		<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls</link>
		<description>Gravity Support Forums Topic: Multipage Form with Unique URLs</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:58:33 +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/multipage-form-with-unique-urls" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Multipage Form with Unique URLs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls#post-153372</link>
			<pubDate>Sun, 24 Feb 2013 02:14:21 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">153372@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for your contribution here:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/multi-page-navigation&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/multi-page-navigation&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ZeadsDead on "Multipage Form with Unique URLs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls#post-153128</link>
			<pubDate>Sat, 23 Feb 2013 13:31:47 +0000</pubDate>
			<dc:creator>ZeadsDead</dc:creator>
			<guid isPermaLink="false">153128@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;David, &#60;/p&#62;
&#60;p&#62;Also, how do the two aforementioned solutions compare to the one mentioned here: &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/link-to-one-page-of-a-multi-page-form&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/link-to-one-page-of-a-multi-page-form&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Ben
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ZeadsDead on "Multipage Form with Unique URLs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls#post-153112</link>
			<pubDate>Sat, 23 Feb 2013 12:56:08 +0000</pubDate>
			<dc:creator>ZeadsDead</dc:creator>
			<guid isPermaLink="false">153112@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;David,&#60;br /&#62;
I am trying to build a 5 page GF where I can allow the user to navigate to any page of the form.  If I have unique URLs for each page then I could simply put links in the sidebar.&#60;/p&#62;
&#60;p&#62;Nevertheless, you stated unique URLs are not possible and you provided an alternative solution.  When I searched your site and google for the mentioned tag - gform_form_tag - I was unable to find an explanation about it - what is it? what does it do? what is it used for?&#60;/p&#62;
&#60;p&#62;I am new to GF and was hoping your solution above would solve my problem.  My problem is two fold:&#60;/p&#62;
&#60;p&#62;1. create a form that allows user to navigate to any page of the form&#60;/p&#62;
&#60;p&#62;2. have the ability to track the user via Google Analytics so I create a sales funnel and find out which page the users drop out at most. (so I can optimize the form).&#60;/p&#62;
&#60;p&#62;Can you give more explanation about your solution above as I am hoping this solved my problem. &#60;/p&#62;
&#60;p&#62;I also found this solution, is it similar to your suggestion above? &#60;a href=&#34;http://gravitywiz.com/multi-page-navigation/&#34; rel=&#34;nofollow&#34;&#62;http://gravitywiz.com/multi-page-navigation/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Ben
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Multipage Form with Unique URLs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls#post-98445</link>
			<pubDate>Mon, 03 Dec 2012 17:21:23 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">98445@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You probably can't have pretty permalinks like that, as they wouldn't be able to copy and paste them for use later anyways. But here's what a developer told me the other day:&#60;/p&#62;
&#60;p&#62;The trick here is to use the gform_form_tag hook and add the extra query string item with the current page number. The following code snippet should do the trick.&#60;br /&#62;
Just place the correct page URL.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_form_tag&#38;quot;, &#38;quot;form_tag&#38;quot;, 10, 2);
function form_tag($form_tag, $form){
$form_tag = preg_replace(&#38;quot;&#124;action=&#38;#39;(.*?)&#38;#39;&#124;&#38;quot;, &#38;#39;action=&#38;quot;YOUR_PAGE_URL?my_page=&#38;#39; . GFFormDisplay::get_source_page($form[&#38;quot;id&#38;quot;]) . &#38;#39;&#38;quot;&#38;#39;, $form_tag);
return $form_tag;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>endocreative on "Multipage Form with Unique URLs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multipage-form-with-unique-urls#post-98442</link>
			<pubDate>Mon, 03 Dec 2012 17:12:20 +0000</pubDate>
			<dc:creator>endocreative</dc:creator>
			<guid isPermaLink="false">98442@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to create a multipage form where each &#34;page&#34; of the form creates a unique URL? This would be instead of the &#34;#&#34; in the URL. &#60;/p&#62;
&#60;p&#62;For example, /form/page1/, /form/page2/, /form/page3/&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
