Sidebar-Content Layout on Product category archives

Show Sidebar-Content Layout on Product category archives, useful when we want to show a filter there.

// Sidebar-Content Layout on Product category archives

function ultimatewoo_wc_product_cat_genesis_layout() {
	if ( is_tax( 'product_cat' )|| is_tax( 'product_brand')) {
		return 'sidebar-content';
	}
}
add_filter( 'genesis_site_layout', 'ultimatewoo_wc_product_cat_genesis_layout' );
Scroll to Top