Add this code to the Theme’s functions.php file to customize the breadcrumb text of your wishlist page.
add_filter('wishlist_single_bredcrumb_home_text', 'wishlist_single_bredcrumb_home_text_20201908', 5);
function wishlist_single_bredcrumb_home_text_20201908($home_text){
$home_text = 'Custom home';
return $home_text;
}

