Please add the following code to your theme’s function.php
add_filter( 'wpseo_breadcrumb_links', 'yoast_seo_breadcrumb_add_link' );
function yoast_seo_breadcrumb_add_link( $links ) {
global $post;
$breadcrumb[] = array(
'url' => site_url( '/products/' ),
'text' => 'Products',
);
array_splice( $links, 1, 0, $breadcrumb );
return $links;
}