I put my forms on my sidebar using widgets provided by gravity form
I realized that you should be able to modify the starting tabindex for the form using the filter below
add_filter("gform_tabindex_2", create_function("", "return 7;"));
However, when the form is on sidebar widget, the filter doesnt work and the form tab index always starts at 1. This gets very problematic when I want to include 2 forms in my sidebar widgets (1 for contact us and the other for newsletter subscription).
Can someone here show me if there is anything I miss.
Thanks in advance