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

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

**Excerpt:** The wpforms_admin_flyoutmenu filter is used to determine if the flyout menu should display in the bottom right corner of the WPForms admin pages.

**Content:**

## Description

The `wpforms_admin_flyoutmenu` filter is used to determine if the flyout menu should display in the bottom right corner of the WPForms admin pages.

## Parameters

$flyout*(bool)* Determines if Sullie’s flyout menu should display in the bottom right corner of the WPForms admin pages, default is `true` (to display).## Source

`wpforms/src/Admin/FlyoutMenu.php`

## More Information

The filter can be used to hide the flyout menu that appears in the bottom right corner of all WPForms admin pages that provide quick links to **Support**, **Joining the FB VIP Community** and **Suggesting a Feature**.

## Example

```

/**
 * Determines if quick link flyout menu should display on WPForms admin pages.
 *
 * @link   https://wpforms.com/developers/wpforms_admin_flyoutmenu/
 *
 * @param  bool $flyout  Default is true.
 * @return bool
 */

add_filter( 'wpforms_admin_flyoutmenu', '__return_false' );
```

## Reference Articles

[How to Disable the Flyout Menu on WPForms Admin Pages](https://wpforms.com/developers/how-to-disable-the-flyout-menu-on-wpforms-admin-pages "How to Disable the Flyout Menu on WPForms Admin Pages")

**Categories:** Filters Hooks

**Tags:** PHP

---

