G
by Kevin Miller
1 (0 reviews)
Gravity Forms - Update Post
Update or Delete Posts, Pages or Custom Post Types with Gravity Forms
Tested up to WP 3.3 (Current: 6.9)
v0.5.3
Current Version v0.5.3
Updated 13 years ago
Last Update on 28 May, 2012
Synced 7 hours ago
Last Synced on
Rank
#18,424
+20 this week
Active Installs
70+
-15.7%
KW Avg Position
117
—
No change
Downloads
7.6K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 80
70+
80+
133
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 2 more installs to reach 80+
Rank Changes
Current
#18,424
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| GravityForms | 117 | — | Tag | 7 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.5.3
- Last Updated
- May 28, 2012
- Requires WP
- 2.9+
- Tested Up To
- 3.3
- PHP Version
- N/A
- Author
- Kevin Miller
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
MW
MW WP Form
200K+ installs
#262
Newsletters, Email Marketing, SMS and Popups by Omnisend
200K+ installs
#279
Crowdsignal Forms
100K+ installs
#306
Frequently Asked Questions
Common questions about Gravity Forms - Update Post
Simply embed a post form into a page with Gravity Forms and them pass a post id to the page via 'gform_post_id'.
Yes.
Yes, there is a checkbox you can check on each custom field you add to the form to have the field saved as unique.
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);