File: /home/fastshipsa/public_html/wp-content/themes/fastrans/templates/sidebar.php
<?php
/**
* Sidebar Template
*
* @package WordPress
* @subpackage FASTRANS
* @author Themexriver
* @version 1.0
*/
if ( class_exists( '\Elementor\Plugin' ) AND $data->get( 'sidebar_type' ) == 'e' AND $data->get( 'sidebar_elementor' ) ) {
?>
<div class="col-xl-4 col-lg-5 order-box-2">
<div class="ft-side-bar-wrapper">
<div class="ft-side-bar-widget-area">
<?php
echo Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $data->get( 'sidebar_elementor' ) );
?>
</div>
</div>
</div>
<?php
return false;
} else {
$options = $data->get( 'sidebar' );
}
?>
<?php if ( is_active_sidebar( $options ) ) : ?>
<div class="col-xl-4 col-lg-5 order-box-2">
<div class="ft-side-bar-wrapper">
<div class="ft-side-bar-widget-area">
<?php dynamic_sidebar( $options ); ?>
</div>
</div>
</div>
<?php endif; ?>