PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

various issues

  1. My form doesn't work properly.
    When trying to upload the form doesn't attach the file and it presents on the email notification the foloowing msg "FAILED (Upload folder could not be created.)".

    Another issue is the Tabindex. Am I allowed to change the order of any field, for keyboard tab navigation?

    On the same form when I enable the "conditional logic" the form disappears.

    Hope to ear from you soon.
    Thanks.

    Posted 13 years ago on Saturday April 23, 2011 | Permalink
  2. When trying to upload the form doesn't attach the file and it presents on the email notification the foloowing msg "FAILED (Upload folder could not be created.)".

    This is a file permission issue. Gravity Forms is unable to write to that folder. You need to make sure your wp-content/uploads folder has the correct CHMOD file permissions to allow the plugin to write to it. If you have PHP Safe Mode turned ON on your web server, this could prevent it from being able to write/create folders and files to your server.

    Another issue is the Tabindex. Am I allowed to change the order of any field, for keyboard tab navigation?

    You can't change the tabindex of each field since they're dynamically created based on how you've ordered them in the file editor. You can change the starting tabindex of each form or disable tabindex completely with a filter added to your theme's functions.php file.

    http://www.gravityhelp.com/documentation/page/Gform_tabindex

    On the same form when I enable the "conditional logic" the form disappears.

    How are you adding your form to your site. Are you using the shortcode in the content editor or are you adding the form directly to the template files using the php function call?

    When using a Gravity Form in a sidebar widget or embedding it anywhere using the function call, you need to manually enqueue the scripts and CSS by placing a short script block in your theme's functions.php file.

    if(!is_admin()) {
        wp_enqueue_script("gforms_ui_datepicker", WP_PLUGIN_URL . "/gravityforms/js/jquery-ui/ui.datepicker.js", array("jquery"), "1.4", true);
        wp_enqueue_script("gforms_datepicker", WP_PLUGIN_URL . "/gravityforms/js/datepicker.js", array("gforms_ui_datepicker"), "1.4", true);
        wp_enqueue_script("gforms_conditional_logic_lib", WP_PLUGIN_URL . "/gravityforms/js/conditional_logic.js", array("gforms_ui_datepicker"), "1.4", true);
        wp_enqueue_style("gforms_css", WP_PLUGIN_URL . "/gravityforms/css/forms.css");
    }

    Without this, the conditional logic scripts, datepicker script, form CSS and other elements needed for the full form functionality aren't loaded.

    You can find more information at the URL below

    http://www.gravityhelp.com/documentation/page/Embedding_A_Form

    Posted 13 years ago on Saturday April 23, 2011 | Permalink
  3. Hi there Kevin!
    Many thanks as usual great feedback! All working! :)

    Another question,.. My form is located in the end of the page and when I submit it the page scrolls to the top. There's any possibility to freeze the page on the same location so it can be able to show the user the success message?

    thank you for your time.

    Posted 13 years ago on Saturday April 23, 2011 | Permalink
  4. Great. Glad you're rolling.

    Yep, again, there's a filter you can add for that. It adds an anchor to the top of your form so the page returns to it on validation error or successful submission.

    http://www.gravityhelp.com/documentation/page/Gform_confirmation_anchor

    Posted 13 years ago on Saturday April 23, 2011 | Permalink

This topic has been resolved and has been closed to new replies.