3

I bought a WordPress template, Zerif Pro, from Themeisle which support WooCommerce. The template WooCommerce pages don't show the breadcrumbs which allow the user to navigate from page to page. Below is the example I found online: enter image description here

I searched for the function woocommerce_breadcrumb() in Woocommerce folder but I couldn't find the related code. Can anyone give me some tips on how do I add it on my page?

Purvik Dhorajiya
  • 4,662
  • 3
  • 34
  • 43
CK Tan
  • 596
  • 2
  • 10
  • 25

2 Answers2

2

You can use

 <?php $args = array(
        'delimiter' => '/',
        'before' => '<span class="breadcrumb-title">' . __( 'This is where you are:', 'woothemes' ) . '</span>'
    );
    woocommerce_breadcrumb( $args );
 ?>
JoeMecPak
  • 618
  • 2
  • 14
  • 28
Pattrick
  • 49
  • 8
0

Complete the 3 steps in this image:

enter image description here

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
Ankit
  • 1