Breadcrumbs are not showing up in Shop
-
We just moved a site from a TwentyTwelve-based child theme over to Genesis. Previously we had breadcrumbs in the Shop, but after moving over to Genesis, the breadcrumbs are not showing up.
I installed Genesis Connect to Woocommerce with the hopes it might remedy the situation, but there are still no breadcrumbs are appearing in the Shop. The Genesis Theme settings have breadcrumb choices for Home, Pages, Single posts, Archives, 404, and Attachments, but nothing about WooCommerce and Products. I can turn on those breadcrumbs but nothing shows in the Shop. We actually don’t want breadcrumbs for Pages and Posts, but we do want them in the Shop.
I looked at the old site’s HTML and there was a div for
<nav class="woocommerce-breadcrumb">
. That div does not appear in the new site’s HTML, so there’s no chance of the div usingdisplay:none
to keep it from appearing.I have added WooCommerce support in my functions.php file. as well as the support needed for Genesis Connect for Woocommerce:
//* Add woocommerce support for theme add_action( 'after_setup_theme', 'woocommerce_support' ); function woocommerce_support() { add_theme_support( 'woocommerce' ); } //* Add Support for Genesis Connect WooCommerce add_theme_support( 'genesis-connect-woocommerce' );
So I’m completely baffled why I am not getting breadcrumbs to show.
Here is a link to the shop page on our site. Would anyone have an idea what I’m missing?
- The topic ‘Breadcrumbs are not showing up in Shop’ is closed to new replies.