开发者 | fried_eggz |
---|---|
更新时间 | 2015年9月1日 21:21 |
PHP版本: | 2.9.2 及以上 |
WordPress版本: | 4.3 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/wp-content/plugins/
directoryYes, to some extent. The plugin supports one file upload per form. To output the link to the file use {upload} in a HTML field. Future versions of this plugin will support multiple files.
Sticky Form stores the data in an actual Gravity Forms entry. The advantage is that the entry can be edited on the back end and the new data will be used to populate the form on the front end. Also, Sticky Form does not just delete the old entry and save a new one, thus keeping its read and starred status.
There was a bug in the Gravity Forms api that prevented fields from getting saved in the entry. The bug was fixed in the latest version of Gravity Forms. Make sure you use an updated version. If you are not able to update Gravity Forms you can easily apply the patch manually to plugins/gravityforms/includes/api.php
On line 510
, remove
if (empty($entry_id)) $entry_id = $entry["id"];
and replace with
if (empty($entry_id)) { $entry_id = $entry["id"]; }else{ $entry["id"] = $entry_id; }