Hi,
How to display breadcrumb on the posts and page?
Hello Steve,
Thanks for writing in! After several tries, your site still does not load from out end.

Your server could be down. Please contact your hosting provider and ask for further assistance so that we can log in to your site.
Please see security release
Hi,
I checked and can see you are using PRO Headers. To add breadcrumds to your post and page, you may created another header and add a breadcrumbs element.

Then assign your header to your posts and pages.
Thanks
I use classic editor not PRO editor.
Hi Steve,
In that case, we’ll have to convert it to a shortcode, please add this code to your child theme’s functions.php
add_shortcode('x_breadcrumbs_display', 'x_breadcrumbs_display');
function x_breadcrumbs_display ($atts) {
ob_start();
x_breadcrumbs();
return ob_get_clean();
}
The breadcrumb element in the builder is a v2 one which doesn’t have a classic shortcode counterpart.
Then simply add it to your classic editor as [x_breadcrumbs_display]
Hope this helps.
Thanks for help. How to change the a link style?
Hi Steve,
You can use this custom CSS to style your breadcrumbs.
.x-breadcrumbs a {
color: green;
font-size: 1.5em;
}
Add it to Theme Options > CSS and feel free to adjust those values.
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.