. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 198.54.115.242 / Your IP :
216.73.216.33 [
Web Server : LiteSpeed System : Linux server233.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : imereohc ( 2529) PHP Version : 8.2.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/imereohc/www/wp-content/themes/astra/inc/compatibility/ |
Upload File : |
<?php
/**
* Elementor Compatibility File.
*
* @package Astra
*/
namespace Elementor;
// If plugin - 'Elementor' not exist then return.
if ( ! class_exists( '\Elementor\Plugin' ) ) {
return;
}
/**
* Astra Elementor Compatibility
*/
if ( ! class_exists( 'Astra_Elementor' ) ) :
/**
* Astra Elementor Compatibility
*
* @since 1.0.0
*/
class Astra_Elementor {
/**
* Member Variable
*
* @var object instance
*/
private static $instance;
/**
* Initiator
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Constructor
*/
public function __construct() {
add_action( 'wp', array( $this, 'elementor_default_setting' ), 20 );
add_action( 'elementor/preview/init', array( $this, 'elementor_default_setting' ) );
}
/**
* Elementor Content layout set as Page Builder
*
* @return void
* @since 1.0.2
*/
function elementor_default_setting() {
if ( false == astra_enable_page_builder_compatibility() || 'post' == get_post_type() ) {
return;
}
// don't modify post meta settings if we are not on Elementor's edit page.
if ( ! $this->is_elementor_editor() ) {
return;
}
global $post;
$id = astra_get_post_id();
$page_builder_flag = get_post_meta( $id, '_astra_content_layout_flag', true );
if ( isset( $post ) && empty( $page_builder_flag ) && ( is_admin() || is_singular() ) ) {
if ( empty( $post->post_content ) && $this->is_elementor_activated( $id ) ) {
update_post_meta( $id, '_astra_content_layout_flag', 'disabled' );
update_post_meta( $id, 'site-post-title', 'disabled' );
update_post_meta( $id, 'ast-title-bar-display', 'disabled' );
update_post_meta( $id, 'ast-featured-img', 'disabled' );
$content_layout = get_post_meta( $id, 'site-content-layout', true );
if ( empty( $content_layout ) || 'default' == $content_layout ) {
update_post_meta( $id, 'site-content-layout', 'page-builder' );
}
$sidebar_layout = get_post_meta( $id, 'site-sidebar-layout', true );
if ( empty( $sidebar_layout ) || 'default' == $sidebar_layout ) {
update_post_meta( $id, 'site-sidebar-layout', 'no-sidebar' );
}
// In the preview mode, Apply the layouts using filters for Elementor Template Library.
add_filter(
'astra_page_layout', function() {
return 'no-sidebar';
}
);
add_filter(
'astra_get_content_layout', function () {
return 'page-builder';
}
);
add_filter( 'astra_the_post_title_enabled', '__return_false' );
add_filter( 'astra_featured_image_enabled', '__return_false' );
}
}
}
/**
* Check is elementor activated.
*
* @param int $id Post/Page Id.
* @return boolean
*/
function is_elementor_activated( $id ) {
if ( version_compare( ELEMENTOR_VERSION, '1.5.0', '<' ) ) {
return ( 'builder' === Plugin::$instance->db->get_edit_mode( $id ) );
} else {
return Plugin::$instance->db->is_built_with_elementor( $id );
}
}
/**
* Check if Elementor Editor is open.
*
* @since 1.2.7
*
* @return boolean True IF Elementor Editor is loaded, False If Elementor Editor is not loaded.
*/
private function is_elementor_editor() {
if ( ( isset( $_REQUEST['action'] ) && 'elementor' == $_REQUEST['action'] ) ||
isset( $_REQUEST['elementor-preview'] )
) {
return true;
}
return false;
}
}
endif;
/**
* Kicking this off by calling 'get_instance()' method
*/
Astra_Elementor::get_instance();