Dear RueNel
Thank You for your reply
I tried to replace the default breadcrumbs in the theme (as you suggested), but it doesn’t seem to work.
I tried inserting the following code in the child functions.php file:
if ( ! function_exists( 'x_breadcrumbs' ) ) :
function x_breadcrumbs() {
if ( x_get_option( 'x_breadcrumb_display', 1 ) && function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} else {
echo '<p>Please install Yoast Breadcrumb plugin.</p>';
}
}
endif;
…but nothing happens!
I also tried (as suggested) to enter the test code:
if ( ! function_exists( 'x_breadcrumbs' ) ) :
function x_breadcrumbs() {
if ( x_get_option( 'x_breadcrumb_display', 1 ) && function_exists('yoast_breadcrumb') ) {
echo "This is a test";
} else {
echo '<p>Please install Yoast Breadcrumb plugin.</p>';
}
}
endif;
… but I don’t see the echo “This is a test”
Maybe the code must be modified to work with PRO or it must be modified to work inside a HEADER?
Thank You again