Show WooCommerce breadcrumbs on single product page

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?

Related posts

2 comments

  1. You can use

     <?php $args = array(
            'delimiter' => '/',
            'before' => '<span class="breadcrumb-title">' . __( 'This is where you are:', 'woothemes' ) . '</span>'
        );
        woocommerce_breadcrumb( $args );
     ?>
    

Comments are closed.