Changing Product Sidebar and breadcrumbs

I would like for the woocommerce product page to have the same sidebar as the shop sidebar.

I’ve tried other peoples php’s and whatnot on the forum. but no luck.

also could you assist in enabling the breadcrumbs for the products as well.

Thank you so much!

Hi,

To achieve that, you can add the code below in your child theme’s functions.php file.

function assign_product_sidebar($sidebar){
 
        if (x_is_product()){
             return 'ups-sidebar-tour';        
         }
    
  return $sidebar;
}
add_filter( 'ups_sidebar', 'assign_product_sidebar');

Hope that helps

Thanks Paul, It doesnt quite work yet. Do i need to add “shop” if my sidebar is called shop?

Hi there,

Yes, please change it to ups-sidebar-shop since it’s the sidebar assigned to your shop page.

Thanks!

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