Hello There,
Thanks for posting in! Regretfully your site is not loading:
I am guessing that your product category page and single product pages are fullwidth. You will need to add a custom code so that these pages will have a sidebar. Please add the following code in your child theme’s functions.php file
// Add sidebar to product category and product pages
// =============================================================================
function x_woocommerce_sidebar($sidebar){
if ( x_is_product() || x_is_product_category() ) {
$contents = 'content-sidebar';
}
return $contents;
}
add_filter('x_option_x_layout_content', 'x_woocommerce_sidebar');
// =============================================================================
Hope this helps. Please let us know how it goes.