Title: [Plugin: Gravity Forms &#8211; Update Post] What does this plugin do??
Last modified: August 20, 2016

---

# [Plugin: Gravity Forms – Update Post] What does this plugin do??

 *  [snails07](https://wordpress.org/support/users/snails07/)
 * (@snails07)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/)
 * Probably the dumbest question ever (I’ve had a couple beers :), but what exactly
   can this plugin do?
    Allow you to edit/delete posts from the front end?
 * [http://wordpress.org/extend/plugins/gravity-forms-update-post/](http://wordpress.org/extend/plugins/gravity-forms-update-post/)

Viewing 3 replies - 16 through 18 (of 18 total)

[←](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/?output_format=md)
[1](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/?output_format=md)
2

 *  [kerrylgeiger](https://wordpress.org/support/users/kerrylgeiger/)
 * (@kerrylgeiger)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/page/2/#post-2728621)
 * Couple things
 * 1) If you have a form that may have blank data and you don’t want those fields
   to be created after update make the change dskvr suggests above and enclose the
   2 following lines in an if blank check.
 *     ```
       $meta = get_post_meta($this->post['ID'], $field['postCustomFieldName'], true);
   
       		if($meta != '') {
   
               	delete_post_meta($this->post['ID'], $field['postCustomFieldName']);
   
               	add_post_meta($this->post['ID'], $field['postCustomFieldName'], is_array($meta) && count($meta) == 1 ? $meta[0] : $meta, true);
       		}
       ```
   
 * For cleanapple, you have to make sure your link is in the WP loop on your template
   otherwise the_ID will not work – maybe that’s it?
 *  [ramey](https://wordpress.org/support/users/ramey/)
 * (@ramey)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/page/2/#post-2728627)
 * Where does this get_post_meta go?
 * ” on the page which displays the post and it does display the expected post –
   BUT custom fields are not initialized. What do I have to do to make this work?
 *  [ramey](https://wordpress.org/support/users/ramey/)
 * (@ramey)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/page/2/#post-2728628)
 * OK – my mistake

Viewing 3 replies - 16 through 18 (of 18 total)

[←](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/?output_format=md)
[1](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/?output_format=md)
2

The topic ‘[Plugin: Gravity Forms – Update Post] What does this plugin do??’ is 
closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/gravity-forms-update-post_68a432.
   svg)
 * [Gravity Forms - Update Post](https://wordpress.org/plugins/gravity-forms-update-post/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gravity-forms-update-post/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gravity-forms-update-post/)
 * [Active Topics](https://wordpress.org/support/plugin/gravity-forms-update-post/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gravity-forms-update-post/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gravity-forms-update-post/reviews/)

 * 18 replies
 * 11 participants
 * Last reply from: [ramey](https://wordpress.org/support/users/ramey/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-gravity-forms-update-post-what-does-this-plugin-do/page/2/#post-2728628)
 * Status: not resolved