Hooks::filter_views_v2_disable_tribe_bar_on_event_manager_page( $apply_setting )
Determine whether to apply the tribeDisableTribeBar
setting on the Events Manager page.
Topics
Parameters #
- $apply_settings
-
(boolean) (Required) Whether to apply the setting or not.
Return #
(boolean) Whether to apply the setting or not.
Source #
File: src/Tribe/Admin/Manager/Hooks.php
public function filter_views_v2_disable_tribe_bar_on_event_manager_page( $apply_setting ) { if ( Admin_Helpers::instance()->is_screen( 'tribe-admin-manager' ) ) { return false; } return $apply_setting; }
Changelog #
Version | Description |
---|---|
5.11.1 | Introduced. |