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' );