Hi @themehorse6,
To use the yoast breadcrumb just go to the theme main directory > inc > header-extension.php file on line no:460 you will see below line of code:
if ( function_exists( 'bcn_display' ) ) {
echo '<div class="breadcrumb">';
bcn_display();
echo '</div> <!-- .breadcrumb -->';
}
just replace the above code with below one
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
}
Note:We recommended you to customize the theme main code by creating a child theme rather than editing direct in the theme main code.
Thank you!