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

**Published:** March 22, 2023
**Author:** Editorial Team

**Excerpt:** The wpforms_payment-checkbox_field_html_value_images filter is used to hide the Image Choices from notifications when using the Checkbox Items payment field.

**Content:**

## Description

The `wpforms_payment-checkbox_field_html_value_images` filter is used to hide the **Image Choices** from the email notification when using the **Checkbox Items** payment field.

## Parameters

$value\_images*(bool) (Required)* Determines to show or hide images inside email notifications. Default is `true` (to show).## Source

`wpforms/includes/fields/class-base.php`

## More Information

The `wpforms_payment-checkbox_field_html_value_images` filter can be used to hide the image choices inside the email notification for the **Checkbox Items** payment field.

Similarly, the `wpforms_checkbox_field_html_value_images` filter is used in the same way when using the **Checkbox** form field, the `wpforms_radio_field_html_value_images` is used for the **Multiple Choice** form field and the `wpforms_payment-multiple_field_html_value_images` is used for the **Mutliple Items** payment field.

## Example

```

/*
 * Filter to hide the image choices from Checkbox Items payment field
 *
 * @link https://wpforms.com/developers/wpforms_checkbox_field_html_value_images/
 *
 * @param $value_images  Default is false.
 * @return bool 
 */

add_filter( 'wpforms_payment-checkbox_field_html_value_images', '__return_false' );

```

## Reference Articles

[How to Hide Image Choices in Notification Emails](https://wpforms.com/developers/how-to-hide-image-choices-in-notification-emails/ "How to Hide Image Choices in Notification Emails")

**Categories:** Filters Hooks

---

</body></html>