04 Apr Conditional Statements
//If in shop OR category archive
if (is_shop() || is_product_category()){
//do something
}
//If in shop AND category archive
if (is_shop() && is_product_category()){
//do something
}
//If in shop OR category archive
if (is_shop() || is_product_category()){
//do something
}
//If in shop AND category archive
if (is_shop() && is_product_category()){
//do something
}