@Harry: Looks like you had customize Catch Box Free theme, as we don’t have support for Breadcrumb in both free and pro version. We are adding it in next version update which will be released soon. It’s under final testing.
For now, you can add the following code in functions.php
file:
if ( ! function_exists( 'catchbox_breadcrumb_display' ) ) :
/**
* Display breadcrumb on header
*/
function catchbox_breadcrumb_display() {
if ( function_exists( 'yoast_breadcrumb' ) ) {
echo '<div class="breadcrumbs wpseoyoast">';
yoast_breadcrumb();
echo '</div><!-- .wpseoyoast -->';
}
elseif ( function_exists( 'bcn_display' ) ) {
echo '<div class="breadcrumbs breadcrumbnavxt" xmlns:v="http://rdf.data-vocabulary.org/#">';
bcn_display();
echo '</div><!-- .breadcrumbnavxt -->';
}
}
endif; // catchbox_breadcrumb_display
add_action( 'catchbox_content', 'catchbox_breadcrumb_display', 20 );