tommy Oct 24, 2019 · 8:20 am #13389 Hi
I’ve enabled Yoast SEO with breadcrumbs and they are working fine on pages (like ‘cart’ or ‘my account’)
But on product pages Woo breadcrumbs are displayed instead of Yoast breadcrumbs.
Any how to change all breadcrumbs to Yoast?
tommy
Andrew Misplon Puro Oct 24, 2019 · 9:13 am #13390 Hi Tommy
Head over to Plugins, search for and install a plugin called Code Snippets. Go to Snippets > Add New, name the snippet as you’d like and insert into the snippet body:
function ultra_child_woocommerce_setup() {
remove_action( 'ultra_woocommerce_breadcrumb', 'woocommerce_breadcrumb' );
add_action( 'ultra_woocommerce_breadcrumb', 'ultra_breadcrumb' );
}
add_action( 'init', 'ultra_child_woocommerce_setup' );
(Copy this function from the forum, not from an email.)
Select the option to run this snippet on the site front-end, save and activate.
Andrew Misplon Puro Oct 24, 2019 · 3:42 pm #13396 For sure 🙂 Glad I could help.