File "sidebar-woocommerce.php"

Full Path: /home/warrior1/public_html/languages/wp-content/themes/ecommerce-market/sidebar-woocommerce.php
File size: 540 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-shop' ) ) {
	return;
}
?>
<?php $sidebar_layout = ecommerce_market_get_option('layout_options'); 
if ( 'no-sidebar' !== $sidebar_layout ) {?>
	<div id="secondary" class="widget-area custom-col-4" role="complementary">
		<?php dynamic_sidebar( 'sidebar-shop' ); ?>
	</div><!-- #secondary -->
<?php } ?>