| Server IP : 104.21.25.182 / Your IP : 216.73.216.38 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/inc/plugins/ |
Upload File : |
<?php
/**
* Elementor Pro Helper Functions
*
*/
namespace BuddyBossTheme;
// If plugin - 'Elementor' not exist then return.
if ( ! class_exists( '\Elementor\Plugin' ) || ! class_exists( 'ElementorPro\Modules\ThemeBuilder\Module' ) ) {
return;
}
use ElementorPro\Modules\ThemeBuilder\Module;
if ( !class_exists( '\BuddyBossTheme\ElementorHelperPro' ) ) {
Class ElementorHelperPro {
protected $_is_active = false;
/**
* Constructor
*/
public function __construct () {
// Add locations.
add_action( 'elementor/theme/register_locations', array( $this, 'register_locations' ) );
// Override theme templates.
add_action( THEME_HOOK_PREFIX . 'header', array( $this, 'do_header' ), 0 );
add_action( THEME_HOOK_PREFIX . 'footer', array( $this, 'do_footer' ), 0 );
add_action( THEME_HOOK_PREFIX . 'before_header', array( $this, 'remove_theme_header_class' ), 0 );
add_action( THEME_HOOK_PREFIX . '_template_parts_content_top', array( $this, 'do_template_parts' ), 0 );
}
public function set_active(){
$this->_is_active = true;
}
public function is_active(){
return $this->_is_active;
}
/**
* Register Locations
*
* @param object $manager Location manager.
* @return void
*/
public function register_locations( $manager ) {
if ( ! function_exists( 'is_404' ) || ! is_404() ) {
$manager->register_all_core_location();
} else {
$core_locations = $manager->get_core_locations();
$overwrite_header_location = false;
$overwrite_footer_location = false;
foreach ( $core_locations as $location => $settings ) {
if ( ! $manager->get_location( $location ) ) {
if ( 'header' === $location ) {
$overwrite_header_location = true;
} elseif ( 'footer' === $location ) {
$overwrite_footer_location = true;
}
$manager->register_core_location( $location, [
'overwrite' => true,
] );
}
}
if ( $overwrite_header_location || $overwrite_footer_location ) {
/** @var Module $theme_builder_module */
$theme_builder_module = Module::instance();
$conditions_manager = $theme_builder_module->get_conditions_manager();
$headers = $conditions_manager->get_documents_for_location( 'header' );
$footers = $conditions_manager->get_documents_for_location( 'footer' );
if ( empty( $headers ) ) {
remove_action( 'get_header', array(
new \ElementorPro\Modules\ThemeBuilder\Classes\Theme_Support(),
'get_header'
) );
remove_filter( 'show_admin_bar', array(
new \ElementorPro\Modules\ThemeBuilder\Classes\Theme_Support(),
'filter_admin_bar_from_body_open'
) );
}
if ( empty( $footers ) ) {
remove_action( 'get_footer', array(
new \ElementorPro\Modules\ThemeBuilder\Classes\Theme_Support(),
'get_footer'
) );
}
}
}
}
/**
* Template Parts Support
*
* @since 1.2.7
* @return void
*/
function do_template_parts() {
// IS Single?
$did_location = Module::instance()->get_locations_manager()->do_location( 'single' );
if ( $did_location ) {
remove_action( THEME_HOOK_PREFIX . '_single_template_part_content', 'buddyboss_theme_single_template_part_content' );
}
}
/**
* Header Support
*
* @return void
*/
public function remove_theme_header_class() {
$did_location = Module::instance()->get_locations_manager()->do_location( 'header' );
if ( $did_location ) {
add_filter('buddyboss_site_header_class', function(){ return 'elementor-header'; });
}
}
/**
* Header Support
*
* @return void
*/
public function do_header() {
$did_location = Module::instance()->get_locations_manager()->do_location( 'header' );
if ( $did_location ) {
remove_action( THEME_HOOK_PREFIX . 'header', 'buddyboss_theme_header' );
remove_action( THEME_HOOK_PREFIX . 'header', 'buddyboss_theme_mobile_header' );
remove_action( THEME_HOOK_PREFIX . 'header', 'buddyboss_theme_header_search' );
}
}
/**
* Footer Support
*
* @return void
*/
public function do_footer() {
$did_location = Module::instance()->get_locations_manager()->do_location( 'footer' );
if ( $did_location ) {
remove_action( THEME_HOOK_PREFIX . 'footer', 'buddyboss_theme_footer_area' );
}
}
}
}