---
title: "GravityActions: How to show hidden inputs"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityactions/gravityactions-show-hidden-inputs/"
---

In GravityActions, hidden inputs in the Gravity Forms form are not displayed by default.

 For example, if you have an Address field and you have the Country input hidden, the Country input will not be shown in GravityActions:

![Inputs hidden in Gravity Forms](https://www.gravitykit.com/wp-content/uploads/2021/11/Screenshot-on-2021-11-23-at-09-51-16.png)
*If you would like to show all inputs, regardless of whether they are shown in the Gravity Forms form, add this code to your site (not sure how?*[Follow these steps.](https://www.gravitykit.com/docs/gravityview/customizing-your-views/where-to-put-code-samples/)):

```
add_filter( 'gk/gravityactions/hide_hidden_inputs', '__return_false' );
```

```
add_filter( 'gk/gravityactions/hide_hidden_inputs', '__return_false' );
```