Removing "Home" from Breadcrumbs
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
// Remove "Home" text and markup from breadcrumbs
add_filter ( 'genesis_home_crumb', 'youruniqueprefix_breadcrumb_home_link' ); // Genesis >= 1.5
function youruniqueprefix_breadcrumb_home_link( $crumb ) {
$crumb = '';
return $crumb;
}