<html lang="pt-br" dir="ltr"><head></head><body>### [wpforms_fields_show_options_setting](https://wpforms.com/developers/wpforms_fields_show_options_setting/)

**Published:** February 13, 2020
**Author:** Editorial Team

**Excerpt:** The wpforms_fields_show_options_setting filter used to <strong>Show Values</strong> on <strong>Dropdown</strong>, <strong>Checkboxes</strong> and <strong>Multiple Choice</strong> fields inside the form builder.


**Content:**

## Description

The `wpforms_fields_show_options_setting` filter used to **Show Values** on **Dropdown**, **Checkboxes** and **Multiple Choice** fields inside the form builder.

## Parameters

$show\_value*(bool)* Determines whether the Show Values will display, default is true (to show).## Source

`wpforms/includes/functions/form-fields.php`

## More Information

The filter can be used to **Show Values** for select, radio and dropdown fields.

## Example

You would just need to add this code to your site. If you need help in adding snippets to your site, [please check out this tutorial](https://wpforms.com/developers/how-to-add-custom-php-or-javascript-for-wpforms/ "How to Add Custom PHP or JavaScript for WPForms").

```

/**
 * Show value field for radio, checkbox, and dropdown fields on all forms.
 *
 * @link   https://wpforms.com/developers/wpforms_fields_show_options_setting/
 *
 * @param  bool $show_value Default is false.
 * @return bool
 */

add_filter( 'wpforms_fields_show_options_setting', '__return_true' );
```

## Related

Article References:

- [How to Add Field Values for Dropdown, Checkboxes, and Multiple Choice Fields](https://wpforms.com/developers/add-field-values-for-dropdown-checkboxes-and-multiple-choice-fields/ "How to Add Field Values for Dropdown, Checkboxes, and Multiple Choice Fields")
- [How to Create Conditional Email Recipients](https://wpforms.com/developers/how-to-create-conditional-email-recipients/ "How to Create Conditional Email Recipients")

**Categories:** Filters Hooks

**Tags:** PHP

---

</body></html>