//========== //NO LOGOUT CONFIRMATION /* add_action('check_admin_referer', 'logout_without_confirm', 10, 2); function logout_without_confirm($action, $result) { if ($action…
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 );
