Skip to content

Using a dnamic tempalte for COre CPT and Product / Manufacturer Archives in TOtal Theme

Core CPT:

Open the Customizer and navigate to „Blog“ – „Archive“.

Product Archives:

Open the Customizer and navigate to „WooCommerce (Total)“ – „Shop & Archives“.

Manufaturer Taxnomy

Make sure you don’t have something like this in your functions.php

//WOOCOMMERCE - ADD LEFT SIODEBAR TO ALL TAXONOOMY PAGES IN SHOP
add_filter( 'wpex_post_layout_class', function( $class ) {

	if ( is_tax('pa_marke') || is_tax('pa_saison') ) {
		$class = 'left-sidebar';
	}

	return $class;
}, 20 );

An den Anfang scrollen