<?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: User Experience Tabbing</title>
		<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing</link>
		<description>Gravity Support Forums Topic: User Experience Tabbing</description>
		<language>en-US</language>
		<pubDate>Sat, 25 Apr 2026 04:08:19 +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/user-experience-tabbing" rel="self" type="application/rss+xml" />

		<item>
			<title>kyle on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46449</link>
			<pubDate>Sun, 15 Jan 2012 21:47:39 +0000</pubDate>
			<dc:creator>kyle</dc:creator>
			<guid isPermaLink="false">46449@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Maybe you don't need to use PHP.  How are you calling your form?  If you're using a shortcode when editing your page, like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[gravityform form=1]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then you'd just need to add the tabindex starting number:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[gravityform form=1 tabindex=32]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;where 32 would be the starting tabindex.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Annamarie on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46400</link>
			<pubDate>Sat, 14 Jan 2012 19:38:12 +0000</pubDate>
			<dc:creator>Annamarie</dc:creator>
			<guid isPermaLink="false">46400@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I appreciate it.  At some point, I'll dig into understanding the PHP and where it should go. For now, I've solved my problem - and i think it's actually a better solution.&#60;br /&#62;
Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46348</link>
			<pubDate>Sat, 14 Jan 2012 11:19:48 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">46348@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Turning off the comment form is a good idea when there is another form on the page.&#60;/p&#62;
&#60;p&#62;If you'd like help setting the tabindex for one of your forms, please post again and we will help you with that.  It's possible to have more than one form on a page, but Gravity Forms does not know that, so it numbers the tabindexes exclusively and individually.  That means there are fields in different forms with the same tabindex, which makes for a bad user experience.&#60;/p&#62;
&#60;p&#62;We can help you with straightening it out.  It's possible to have multiple forms on one page and have the tabbing work as expected.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Annamarie on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46341</link>
			<pubDate>Sat, 14 Jan 2012 07:33:02 +0000</pubDate>
			<dc:creator>Annamarie</dc:creator>
			<guid isPermaLink="false">46341@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Well for anyone who is reading this thread... the best answer was NOT to have two forms on a page and to turn off comments so that there is only one form on the page. Then things work just fine.  Thanks anyway for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Annamarie on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46306</link>
			<pubDate>Fri, 13 Jan 2012 15:48:09 +0000</pubDate>
			<dc:creator>Annamarie</dc:creator>
			<guid isPermaLink="false">46306@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm a little stuck because it's requiring more PHP than I know. I'm willing to learn but I think asking directly for help will be fastest. &#60;/p&#62;
&#60;p&#62;Here's what I &#34;get&#34;&#60;/p&#62;
&#60;p&#62;This is the sample code.  'lt;?php gravity_form($id, $display_title=true, $display_description=true, $display_inactive=false, $field_values=null, $ajax=false, $tabindex); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;I only need this much '&#38;lt;?php gravity_form($tabindex); ?&#38;gt;'; but I'm not sure how to include it on my site. &#60;/p&#62;
&#60;p&#62;I'm using Thesis so I have a PHP file called &#34;custom_functions.php&#34; SInce the &#38;lt;?php declaration is at the beginning of the file. I don't need that part, right? &#60;/p&#62;
&#60;p&#62;So is it as simple as adding this line into the file?&#60;br /&#62;
function gravity_form($tabindex);&#60;/p&#62;
&#60;p&#62;Or could I put this '&#38;lt;?php gravity_form($tabindex); ?&#38;gt;'  into the page?  This I should use the custom_functions file? &#60;/p&#62;
&#60;p&#62;Thanks for clarifying. And educating me if I misunderstood.&#60;br /&#62;
I know enough that I don't want to guess!&#60;/p&#62;
&#60;p&#62;See what Thesis has done to me? I guess what I'm asking is the grammar for PHP.&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kyle on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46296</link>
			<pubDate>Fri, 13 Jan 2012 13:24:08 +0000</pubDate>
			<dc:creator>kyle</dc:creator>
			<guid isPermaLink="false">46296@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;With what you have, the $tabindex would refer to the form ID.  You need all the arguments in your call:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

$form_id = 1;
$display_title = true;
$display_description = true;
$display_inactive = false;
$field_values = null;
$ajax = false;
$tabindex = 20;

gravity_form($form_id, $display_title, $display_description, $display_inactive, $field_values, $ajax, $tabindex); 

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Annamarie on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46293</link>
			<pubDate>Fri, 13 Jan 2012 12:59:07 +0000</pubDate>
			<dc:creator>Annamarie</dc:creator>
			<guid isPermaLink="false">46293@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So if I'm understanding right,  I can add this piece of code to my &#34;custom_functions.php&#34; file? (Im using Thesis.) &#60;/p&#62;
&#60;p&#62;'&#38;lt;?php gravity_form($tabindex); ?&#38;gt;'
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46284</link>
			<pubDate>Fri, 13 Jan 2012 10:41:42 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">46284@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It sounds like you just need to set the tabindex for the forms. You can find more info on that here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Embedding_A_Form&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Embedding_A_Form&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Depending on how you are placing the forms - setting that can vary, but you should be able to get through it. Let me know if you get stuck.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Annamarie on "User Experience Tabbing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-experience-tabbing#post-46282</link>
			<pubDate>Fri, 13 Jan 2012 09:29:34 +0000</pubDate>
			<dc:creator>Annamarie</dc:creator>
			<guid isPermaLink="false">46282@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;On my new form, when the user enters the first field and tabs, the field she goes to is not in the form but rather the first field in the next form. (At the moment, I'm trying out repeating the form &#34;below the fold&#34;.) Before I added the second form tabbing put the user into the comments box. I've noticed this on other forms.  How can I change this behavior so that a tab takes the user to the next field in the form? &#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
To see go to: &#60;a href=&#34;http://www.sharinghousing.com/i-need-help-now&#34; rel=&#34;nofollow&#34;&#62;http://www.sharinghousing.com/i-need-help-now&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
