• Resolved James

    (@en7jos)


    Hi,

    Thought this should be simple, but can’t find a solution anywhere after hours of searching so here goes…

    What I want to do is remove the default WooCommerce breadcrumbs and instead replace these with the WordPress SEO (Yoast) breadcrumbs. I have Yoast breadcrumbs on the rest of the site and would like to continue the same layout, structure and styling on the ecommerce pages too.

    I have Yoast breadcrumbs working fine elsewhere, but can’t figure how to get them to show up on the WooCommerce pages. I found an article about replacing WooTheme breadcrumbs with Yoast ones (see here), but this doesn’t work (i.e. no effect) for Woocommerce.

    Any ideas please?

    Thanks, James

    http://wordpress.org/extend/plugins/wordpress-seo/

Viewing 16 replies (of 16 total)
  • This worked for me… Using Woo Canvas and WooCommerce

    // Replace WooThemes Breadcrumbs with Yoast breadcrumbs
    add_action( 'init', 'hh_breadcrumbs' );
    
    function hh_breadcrumbs() {
        remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
        add_action( 'woocommerce_before_main_content','hh_yoast_breadcrumb', 20, 0);
        function hh_yoast_breadcrumb() {
            if ( function_exists('yoast_breadcrumb')  && !is_front_page() ) {
                yoast_breadcrumb('<p class="breadcrumbs">','</p>');
            }
        }
    
    }
Viewing 16 replies (of 16 total)
  • The topic ‘Replacing WooCommerce breadcrumbs with Yoast SEO ones’ is closed to new replies.