Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    This is because we don’t use sidebars for WooCommerce pages. You can remove woocommerce.php from the theme and it will work after that. ??

    Regards,
    Hardeep

    Thread Starter thechoperpilot

    (@thechoperpilot)

    Hi!

    Thank you for reply!
    I received email with some similar instructions from theme developers’ site, and solve my problem. Will try your solution, too.

    Anyway, let me share here how I solved problem (with email instructions):
    first I created Child theme for Zerif-lite theme. In child theme folder added new page woocommerce.php (copy of woocommerce.php from zerif-lite theme folder). In that new page changed next:

    <div class=”content-left-wrap col-md-12″>
    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>
    <?php woocommerce_content(); ?>
    </main><!– #main –>
    </div><!– #primary –>
    </div><!– .content-left-wrap –>

    with this:

    <div class=”content-left-wrap col-md-9″>
    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>
    <?php woocommerce_content(); ?>
    </main><!– #main –>
    </div><!– #primary –>
    </div><!– .content-left-wrap –>
    <div class=”sidebar-wrap col-md-3 content-left-wrap”>
    <?php get_sidebar(); ?>
    </div><!– .sidebar-wrap –>

    Now there is sidebar for woocommerce generated pages.

    Thank you a lot, my life is saved ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Widgets won?t show on Cart, My Account, Checkout pages’ is closed to new replies.