Sidebar on special product category pages


add_filter( 'avf_custom_sidebar', 'enfold_customization_custom_sidebar', 10, 1 );
function enfold_customization_custom_sidebar( $custom_sidebar ) {
if ( is_product_category( 'shirts' ) ) { $custom_sidebar = 'custom'; }
return $custom_sidebar;
}