N
N
nikfcsm2018-05-07 10:38:09
WordPress
nikfcsm, 2018-05-07 10:38:09

How to add store item in woocommerce breadcrumbs?

Hello, please help me to solve this problem.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
O
Orkhan Hasanli, 2018-05-07
@azerphoenix

It would be nice to clarify through what you display bread crumbs?
If via Yoast Seo Breadcrumbs, then:
https://gist.github.com/amboutwe/ea0791e184668a5c7...

add_filter( 'wpseo_breadcrumb_links', 'wpseo_breadcrumb_add_woo_shop_link' );
function wpseo_breadcrumb_add_woo_shop_link( $links ) {
    global $post;
    if ( is_woocommerce() ) {
        $breadcrumb[] = array(
            'url' => get_permalink( woocommerce_get_page_id( 'shop' ) ),
            'text' => 'Shop',
        );
        array_splice( $links, 1, -2, $breadcrumb );
    }
    return $links;
}

N
nikfcsm, 2018-05-07
@nikfcsm

Yes, along the way they are generally displayed as a topic ...
https://normativ.org/shop/stendyi/stend-ohrana-tru...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question