@danellesmit Thanks for your reply and confirming that you’ve performed a conflict check.
Can you please confirm that both breadcrumbs are enabled in the plugin? You can enable Breadcrumbs by performing the following steps:
? Go to Yoast SEO>Search Appearance>Breadcrumbs
? Toggle the setting for ‘Enable Breadcrumbs in your theme’ to ‘Enabled’
? Click ‘Save Changes’
After confirming that breadcrumbs are enabled on the site, can you next confirm that you have added the necessary code to where you want the breadcrumbs to appear in your theme’s respective PHP file? The code for the breadcrumbs is as follows:
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
?>
Depending on your theme you may or may not need to add in the beginning <?php
and ending ?>
php tags. If you are not sure, we would recommend contacting your theme’s developer for additional assistance.
Common places where you could place your breadcrumbs are inside your single.php and/or page.php file just above the page’s title. Another option that makes it really easy in some themes is by just pasting the code in header.php at the very end.
Also, we have directions for implementing the Yoast breadcrumbs at the following link: How to implement Yoast SEO breadcrumbs.