<?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: Skipping to second page of a multipage form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/skipping-to-second-page-of-a-multipage-form</link>
		<description>Gravity Support Forums Topic: Skipping to second page of a multipage form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 15:29:06 +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/skipping-to-second-page-of-a-multipage-form" rel="self" type="application/rss+xml" />

		<item>
			<title>webdevstudios on "Skipping to second page of a multipage form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/skipping-to-second-page-of-a-multipage-form#post-24954</link>
			<pubDate>Fri, 06 May 2011 16:39:34 +0000</pubDate>
			<dc:creator>webdevstudios</dc:creator>
			<guid isPermaLink="false">24954@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Worked like a charm! Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webikon on "Skipping to second page of a multipage form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/skipping-to-second-page-of-a-multipage-form#post-24848</link>
			<pubDate>Thu, 05 May 2011 12:23:08 +0000</pubDate>
			<dc:creator>webikon</dc:creator>
			<guid isPermaLink="false">24848@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can use this hack to start on page 2 when user is logged in:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function start_page_filter($form){

	$form_id = $form[&#38;quot;id&#38;quot;];
	$start_page = 2;

	if ( is_user_logged_in() &#38;amp;&#38;amp; !$_POST[&#38;#39;gform_submit&#38;#39;] )
		GFFormDisplay::$submission[$form_id][&#38;quot;page_number&#38;quot;] = $start_page;

    return $form;

}
add_filter(&#38;quot;gform_pre_render&#38;quot;, &#38;quot;start_page_filter&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I use something similar to start with the page defined in URL (ex.: &#60;a href=&#34;http://wptest.dev/page?start_page=2&#34; rel=&#34;nofollow&#34;&#62;http://wptest.dev/page?start_page=2&#60;/a&#62; ):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function start_page_filter($form){

	$form_id = $form[&#38;quot;id&#38;quot;];
	$start_page = $_GET[&#38;#39;start_page&#38;#39;];

	if ( isset($start_page) &#38;amp;&#38;amp; !empty($start_page) &#38;amp;&#38;amp; !$_POST[&#38;#39;gform_submit&#38;#39;] )
		GFFormDisplay::$submission[$form_id][&#38;quot;page_number&#38;quot;] = $start_page;

    return $form;

}
add_filter(&#38;quot;gform_pre_render&#38;quot;, &#38;quot;start_page_filter&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Is there a better way how to do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webdevstudios on "Skipping to second page of a multipage form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/skipping-to-second-page-of-a-multipage-form#post-24787</link>
			<pubDate>Wed, 04 May 2011 14:53:11 +0000</pubDate>
			<dc:creator>webdevstudios</dc:creator>
			<guid isPermaLink="false">24787@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a multipage form, the first page of which is a user registration form. I'm looking for a way to skip this page of the form if the user is logged in already, which will obviously make the first page unnecessary. Do-able?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
