Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #99431
    Leslie Bigos
    Member

    I customized the layout Woocommerce Layout> Content, Primary Sidebar

    I put a SEARCH in the WooCommerce Primary Sidebar.

    When I view my page, the SEARCH bar is pushed down to the bottom of the content window. I am wondering how the WooCommerce Primary Sidebar is supposed to work?

    #99453
    Leslie Bigos
    Member
    #99463
    Mahesh
    Member

    @bigoslesli: There has been a small bug in the theme which is causing the issue and will be fixed in the next update which will be released soon.
    To fix the issue, you can create child theme, then add the following code in child theme’s functions.php:

    function jomsom_woocommerce_start() {
        echo '<div id="primary" class="content-area"><main role="main" class="site-main woocommerce" id="main"><div class="woocommerce-wrap">';
    }
    
    function jomsom_woocommerce_end() {
        echo '</div><!-- .woocommerce-wrap --></main><!-- #main --></div><!-- #primary -->';
    }

    You can find more details on creating child theme HERE.

    Regards,
    Mahesh

    #99628
    Mahesh
    Member

    @bigoslesli: Just to let you know that new version of Jomsom Pro 1.4 is now available, please update.

    Regards,
    Mahesh

    #99633
    Leslie Bigos
    Member

    Thanks so much. The new release fixed the problem!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘WooCommerce Side Bar’ is closed to new replies.