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