bp_core_set_uri_elementor_show_on_front( boolean $bool )
Fix elementor editor issue while bp page set as front.
Description
Parameters
- $bool
-
(Required) Boolean to return
Return
(boolean)
Source
File: bp-core/compatibility/bp-incompatible-plugins-helper.php
function bp_core_set_uri_elementor_show_on_front( $bool ) {
if (
isset( $_REQUEST['elementor-preview'] )
|| (
is_admin() &&
isset( $_REQUEST['action'] )
&& (
'elementor' === $_REQUEST['action']
|| 'elementor_ajax' === $_REQUEST['action']
)
)
) {
return false;
}
return $bool;
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.5.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.