Hi all,
My customer would like to have a different Breadcrumbs Image for each different product brand. Taking a look at woo.php and breadcrumbs.php I’m not getting any clue on how the taxonomy is handled. Furthermore, since Brand is a custom taxonomy, where should I look at?
I aim to create something like this:
<?php if( is_brand (‘BRAND NAME 1’)) {
echo ““;
}
elseif ( is_shop(”) || is_woocommerce(”) || is_single(”) || is_category(”) ) {
echo etheme_logo();
}
?>
Thanks in advance for any support you may give me.