Remove /shop from breadcrumbs

Remove “/Shop” from breadcrumbs:
In twentyoku/woocommerce/shop/breadcrumbs.php I’ve commented this:

[php]

if (isset($shop_page)){
// If permalinks contain the shop page in the URI prepend the breadcrumb with shop
if ( $shop_page_id && strstr( $permalinks[‘product_base’], ‘/’ . $shop_page->post_name ) && get_option( ‘page_on_front’ ) !== $shop_page_id ) {
$prepend = $before . ‘<a href="’ . get_permalink( $shop_page ) . ‘">’ . $shop_page->post_title . ‘</a> ‘ . $after . $delimiter;
}
}

[/php]

Voila!