---
title: "Edit Entry: How to disable Gravity Forms User Registration feeds from being updated"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview/advanced/disable-user-registration-updates-editing-entry/"
---

GravityView's Edit Entry functionality automatically updates users when a form is connected to the [Gravity Forms User Registration Add-on](https://www.gravityforms.com/add-ons/user-registration/). This is the case even when the User Registration Add-on action is set to "Create" and not set to "Update".

To change this behavior, add the following code to your website:

```
add_filter( 'gravityview/edit_entry/user_registration/trigger_update', '__return_false' );
```

```
add_filter( 'gravityview/edit_entry/user_registration/trigger_update', '__return_false' );
```

Read here how to add these code samples to your website: [Where to put code samples.](https://www.gravitykit.com/docs/gravityview/customizing-your-views/where-to-put-code-samples/)

After adding this code, User Registration feeds will not be processed when editing an entry in GravityView.