';
// Calling the right sidebar
if ( is_active_sidebar( 'ambition_right_sidebar' ) ) :
dynamic_sidebar( 'ambition_right_sidebar' );
endif;
echo '';
}elseif( class_exists( 'WooCommerce' ) && is_woocommerce() && $content_layout == 'left' ){
echo '
';
// Calling the left sidebar
if ( is_active_sidebar( 'ambition_left_sidebar' ) ) :
dynamic_sidebar( 'ambition_left_sidebar' );
endif;
echo '
';
}
if( !class_exists( 'WooCommerce' )){
// Calling the right sidebar
if ( is_active_sidebar( 'ambition_right_sidebar' ) ) :
dynamic_sidebar( 'ambition_right_sidebar' );
endif;
}
if( class_exists( 'WooCommerce' ) && !is_woocommerce()){
// Calling the right sidebar
if ( is_active_sidebar( 'ambition_right_sidebar' ) ) :
dynamic_sidebar( 'ambition_right_sidebar' );
endif;
}
?>