### [wpforms_emails_summaries_is_disabled](https://wpforms.com/developers/wpforms_emails_summaries_is_disabled/)

**Published:** April 10, 2020
**Author:** Editorial Team

**Excerpt:** The wpforms_emails_summaries_is_disabled filter determines if the Disable Email Summaries checkbox setting should be hidden.

**Content:**

## Description

The `wpforms_emails_summaries_is_disabled` filter determines if the **Disable Email Summaries** checkbox setting should be hidden.

## Parameters

$settings*(bool) (Required)* Determines if **Disable Email Summaries** checkbox will be hidden from the **Settings**, default is `false` (to display).## Source

`wpforms/src/Emails/Summaries.php`

## More Information

The filter can be used to hide the **Disable Email Summaries** checkbox from the WPForms **Settings** page. If this setting is disabled so it can not be selected, no email summaries will be sent by default.

## Example

```

/**
 * Determines if setting to disable weekly email summaries is hidden.
 *
 * @link   https://wpforms.com/developers/wpforms_emails_summaries_is_disabled/
 *
 * @param  bool $settings  Default is false.
 * @return bool
 */

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

## Reference Articles

[How to Disable the Checkbox Setting for the Weekly Email Summary](https://wpforms.com/developers/how-to-disable-the-checkbox-setting-for-the-weekly-email-summary/ "How to Disable the Checkbox Setting for the Weekly Email Summary")

**Categories:** Filters Hooks

**Tags:** PHP

---

