File: /home/www/terrazasgreen2/wp-content/themes/hestia/sidebar-woocommerce.php
<?php
/**
* The Sidebar for WooCommerce containing the main widget areas.
*
* @package Hestia
* @since Hestia 1.0
* @modified 1.1.30
*/
$class_to_add = '';
$hestia_sidebar_layout = '';
$hestia_sidebar_layout = get_theme_mod( 'hestia_page_sidebar_layout', 'full-width' );
$hestia_sidebar_width = get_theme_mod( 'hestia_sidebar_width', 25 );
if ( $hestia_sidebar_layout === 'sidebar-right' && $hestia_sidebar_width > 3 && $hestia_sidebar_width < 80 ) {
$class_to_add = 'col-md-offset-1';
}
if ( is_active_sidebar( 'sidebar-woocommerce' ) ) { ?>
<div class="col-md-3 shop-sidebar-wrapper">
<aside id="secondary" class="shop-sidebar" role="complementary">
<?php dynamic_sidebar( 'sidebar-woocommerce' ); ?>
</aside><!-- .sidebar .widget-area -->
</div>
<?php
} elseif ( is_customize_preview() ) {
hestia_sidebar_placeholder( $class_to_add, 'sidebar-woocommerce' );
} ?>