stuart-d
6/18/2013 - 1:51 PM

Change the word Products in the WooCommerce breadcrumb trail

Change the word Products in the WooCommerce breadcrumb trail

add_filter( 'woo_breadcrumbs_trail', 'woo_custom_filter_breadcrumbs_trail', 10 );
function woo_custom_filter_breadcrumbs_trail ( $trail ) {
  foreach ( $trail as $k => $v ) {
		if ( strtolower( strip_tags( $v ) ) == 'products' ) {
		$trail[$k] = 'Photos';
		break;
		}
	}
	return $trail;
} // End woo_custom_filter_breadcrumbs_trail()