File: /home/nokatech/public_html/wp-content/themes/consultox/templates/sidebar.php
<?php
/**
* Sidebar Template
*/
if ( class_exists( '\Elementor\Plugin' ) AND $data->get( 'sidebar_type' ) == 'e' AND $data->get( 'sidebar_elementor' ) ) {
?>
<div class="col-lg-4 col-md-12 col-sm-12 sidebar-side aaa">
<div class="blog-sidebar ml_10">
<?php
echo Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $data->get( 'sidebar_elementor' ) );
?>
</div>
</div>
<?php
return false;
} else {
$options = $data->get( 'sidebar' );
}
?>
<?php if ( is_active_sidebar( $options ) ) : ?>
<div class="col-lg-4 col-md-12 col-sm-12 sidebar-side bbb">
<div class="blog-sidebar ml_10">
<?php dynamic_sidebar( $options ); ?>
</div>
</div>
<?php endif; ?>