This should help, copy and paste this into your themes functions php file and it will remove the ‘Home’ link and separator from the breadcrumbs:
function remove_home_from_breadcrumb($links)
{
if ( $links[0]['url'] == get_home_url() ) {
array_shift($links);
}
return $links;
}
add_filter('wpseo_breadcrumb_links', 'remove_home_from_breadcrumb');