BuddyBoss Home – Web Support Forums Themes Boss. theme Default Sidebar does not show in newest update

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #45250
    @ubrandon

    Hey! After updating I cannot get any widgets to show in any pages that have the default side bar. Anyone else? Thanks!

    Answers

    #45275
    @vapvarun

    Hi @ubrandon, You are not getting it on all page or just woo commerce pages ?
    In our latest update we have removed woocommerce.php from parent theme,
    If you have issues only with single prodduct sidebar please include attached files inside your child theme. Extract it first, it contain woocommerce.php.
    Regards
    Varun Dubey

    #45313
    @ubrandon

    All pages unfortunately Varun. Any page that has a side bar is just an empty space. I reverted back to the previous version of buddyboss in the meantime but am testing it out on my other domain trying to figure it out. No one else has this problem? If not I can check for conflicts. Thanks

    #45315
    @vapvarun

    Hi @ubrandon
    Please copy sidebar.php from the parent Boss theme (1.1.9) and add it to child theme and
    modify the sidebar.php with following code inside child theme
    we will push update asap

    
    <!-- default WordPress sidebar -->
    <div id="secondary" class="widget-area" role="complementary">
    	<?php 
    	if (function_exists('is_shop') && is_shop()) {
    		if (is_active_sidebar('woo_sidebar')):
                dynamic_sidebar('woo_sidebar');
            endif;
    	} else {
    		if ( is_active_sidebar('sidebar') ) : 
    			dynamic_sidebar( 'sidebar' );
    		endif; 
    	} ?>
    </div><!-- #secondary -->
    

    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Default Sidebar does not show in newest update’ is closed to new replies.