N
N
Nikitos082016-10-31 17:19:25
PHP
Nikitos08, 2016-10-31 17:19:25

How to remove store page link from woocommerce breadcrumbs?

I want to remove the link from regular woocommerce breadcrumbs... I found this one, but I don't understand how to use it in my case.

add_filter( 'woocommerce_breadcrumb_defaults', 'jk_woocommerce_breadcrumbs' );
function jk_woocommerce_breadcrumbs() {
    return array(
            'delimiter'   => ' / ',
            'wrap_before' => '<nav class="woocommerce-breadcrumb" itemprop="breadcrumb">',
            'wrap_after'  => '</nav>',
            'before'      => '',
            'after'       => '',
            'home'        => _x( 'Home', 'breadcrumb', 'woocommerce' ), 
        );
}

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question