I had previous help on this issue (now closed). However the Product Category Sidebar isn’t changed to my “shop” sidebar.
Am I missing something?
Thanks
I had previous help on this issue (now closed). However the Product Category Sidebar isn’t changed to my “shop” sidebar.
Am I missing something?
Thanks
Hello @niconic,
Thanks for asking. 
Please update the code with following and add under child theme function.php file:
function assign_product_sidebar($sidebar){
if (x_is_product() || x_is_product_category() ){
return 'ups-sidebar-tour';
}
return $sidebar;
}
add_filter( 'ups_sidebar', 'assign_product_sidebar');
Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.