Plugin info

Total downloads: 7,535
Active installs: 80
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 5/28/2012 (4964 days ago)
Added to WordPress: 4/28/2012 (13 years old)
Minimum WordPress version: 2.9
Tested up to WordPress version: 3.3.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4964 days ago

20/100

Is Gravity Forms – Update Post abandoned?

Possibly abandoned (last update 4964 days ago).

Compatibility

Requires WordPress: 2.9
Tested up to: 3.3.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Gravity Forms Zero Spam
Rating 4.3/5 (23 reviews)Active installs 100,000
Gravity PDF
Rating 4.9/5 (316 reviews)Active installs 30,000
گرویتی فرم فارسی
Rating 4.6/5 (38 reviews)Active installs 30,000
Advanced Custom Fields: Gravity Forms Add-on
Rating 4.2/5 (13 reviews)Active installs 30,000
GravityExport Lite for Gravity Forms
Rating 5.0/5 (38 reviews)Active installs 10,000
Multiple Columns for Gravity Forms
Rating 4.4/5 (29 reviews)Active installs 10,000

Description

Update or Delete Posts, Pages or Custom Post Types with Gravity Forms. Through a variety of filters the form can be restricted to the author, use custom permissions, take advantage of conditional fields, disable entries, override post status and more!

NOTE: This is the first official release, test with your own data and if something doesn’t work as expected send bugs to [email protected]

Installation

  1. Upload the folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

How do I use it?

Simply embed a post form into a page with Gravity Forms and them pass a post id to the page via ‘gform_post_id’.

Does it respect Capabilities

Yes.

Will it save custom fields as unique

Yes, there is a checkbox you can check on each custom field you add to the form to have the field saved as unique.

Are there any filters/options?

Yes, see the readme.txt file for example of hooks and filters that can be used

Use the default status of the post being edited
function gform_update_post_status($status, $form)
{
return ‘inherit’;
}
add_filter(‘gform_update_post_status’, ‘gform_update_post_status’, 10, 2);

Disable Entries
function gform_update_post_entries($status, $form)
{
return false;
}
add_filter(‘gform_update_post_entries’, ‘gform_update_post_entries’, 10, 2);

Change the options for the plugin
function gform_update_post_id($id)
{
$options[‘request_id’] = ‘gform_post_id_special’;

  return $options;
}
add_filter('gform_update_post_id', 'gform_update_post_id');

Update Delete Button
function gform_update_post_delete_button($button, $form)
{
return ‘

‘ . $button . ‘

‘;
}
add_filter(‘gform_update_post_delete_button’, ‘gform_update_post_delete_button’, 10, 2);

Change the delete confirmation
function gform_update_post_confirmation_delete($confirmation)
{
return __(‘Ack, you deleted it… haha!’);
}
add_filter(‘gform_update_post_confirmation_delete’, ‘gform_update_post_confirmation_delete’, 10, 2);

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.5.3

  • Custom Meta Fix

0.5.2

  • Added banner-772×250.png

0.5.1

  • Updated the FAQ on the readme.txt

0.5

  • Initial Build