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 ??