Where can I add an conditional in child theme to change the layout of the shop sidebar position based on a certain category term?
<?php if ( has_term ( 'Category1', 'product_cat')) {
// No sidebar on shop page
} elseif ( has_term ( 'Category1', 'product_cat')) {
// Show sidebar on left
} else {
//everything else
}
On another note, this should be super cool to have as a theme function. I haven’t seen a theme with this. It should be as simple as having an include/exclude categories section on the theme options.