Example #1
0
function bravad_after_single_product()
{
    echo '</div>';
    echo '<div class="column col-4">';
    woocommerce_get_sidebar();
    echo '</div>';
    echo '</div>';
}
Example #2
0
    function koster_after_content()
    {
        ?>
		</section><!-- /#content -->
		<?php 
        woocommerce_get_sidebar();
        ?>
	    </div><!-- /.row-->
	    <?php 
    }
Example #3
0
    function artificer_after_content()
    {
        ?>
			</div><!-- /#main -->
	        <?php 
        woo_main_after();
        ?>
			<?php 
        woocommerce_get_sidebar();
        ?>
	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
Example #4
0
function extra_woocommerce_output_content_wrapper_end()
{
    echo '
					</div> <!--.et_pb_extra_column_main -->';
    woocommerce_get_sidebar();
    echo '
				</div> <!-- #content-area -->
			</div> <!-- .container -->
		</div> <!-- #main-content -->';
}
Example #5
0
function et_divi_output_content_wrapper_end()
{
    echo '</div> <!-- #left-area -->';
    if (is_product() && 'et_full_width_page' !== get_post_meta(get_the_ID(), '_et_pb_page_layout', true) || (is_shop() || is_product_category() || is_product_tag()) && 'et_full_width_page' !== et_get_option('divi_shop_page_sidebar', 'et_right_sidebar')) {
        woocommerce_get_sidebar();
    }
    echo '
				</div> <!-- #content-area -->
			</div> <!-- .container -->
		</div> <!-- #main-content -->';
}
Example #6
0
$shop_sidebar_pos = is_single() ? get_setting('shop_single_sidebar_pos', 'right') : get_setting('shop_sidebar_pos', 'right');
$layout = current_theme_supports('theme-demo') && isset($_GET['sidebar']) ? 'sidebar' : '';
$shop_layout = !empty($layout) ? $layout : $shop_layout;
?>

<div role="main" class="main shop">
    <div class="container">
        <hr class="tall">
        
        <?php 
if ('sidebar' == $shop_layout) {
    ?>

        <div class="row">
            <?php 
    if ('left' == $shop_sidebar_pos) {
        ?>

                <div class="col-md-3">
                    <?php 
        woocommerce_get_sidebar();
        ?>

                </div>
            <?php 
    }
    ?>

            <div class="col-md-9">
        <?php 
}
    function anaglyph_get_woo_sidebar_content()
    {
        ?>
		<div class="col-md-3">
			<?php 
        woocommerce_get_sidebar();
        ?>
	
		</div>	
	<?php 
    }
Example #8
0
function woocommerce_get_sidebar()
{
    if (!et_is_shop_page_fullwidth()) {
        woocommerce_get_sidebar();
    }
}
Example #9
0
function et_foxy_output_content_wrapper_end()
{
    echo '
			<div class="clear"></div>
		</div> <!-- #left-area -->';
    woocommerce_get_sidebar();
    echo '</div> <!-- #content -->';
}