Wondering how to show my custom sidebar opn woocommerce product category and single product pages

I created a custom sidebar in appearance > Sidebars. It shows on the shop page, but not on the single product pages. I added this code: https://theme.co/apex/forums/topic/no-sidebar-in-woocommerce/#post-167286 dec 19 at 10:48 am but that did nothing.

can you help me?

shop is at https://hedheogaspets.com/shop

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.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.