File "sidebar.php"

Full Path: /home/warrior1/public_html/wp-content/uploads/woocommerce_uploads/sidebar.php
File size: 576 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * The sidebar containing the main widget area
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package eCommerce_Market
 */

if ( ! is_active_sidebar( 'sidebar-1' ) ) {
	return;
}
?>
<?php $sidebar_layout = ecommerce_market_get_option('layout_options'); 

if ( 'no-sidebar' !== $sidebar_layout ) { ?>

	<div id="secondary" class="widget-area custom-col-4">
		<div class="theiaStickySidebar">

			<?php dynamic_sidebar( 'sidebar-1' ); ?>
			
		</div>

	</div><!-- #secondary -->
<?php } ?>