Remove 'You are here' from Breadcrumbs
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Modify breadcrumb arguments.
add_filter( 'genesis_breadcrumb_args', 'sp_breadcrumb_args' );
function sp_breadcrumb_args( $args ) {
$args['labels']['prefix'] = '';
return $args;
}