Hi vincent.jiang,
Create a child-theme and then remove the line of code “get_template_part(‘breadcrums’);” from the file Page.php save file
This will remove the breadcrumbs from your Pages (in child theme only)
Similarly , Do this for single.php
Thanks
Hi,
I tried removing the breadcrumbs from the blog and all the other pages, and was able to manage it as well.
However, I’m facing 2 propblems:
1) I would want to retain the “grey” divider that was holding the breadcrumbs coz it gives a neat look to the page. Currently, the big white navbar ends and the post/page starts just below the shadow effect. Can we either have the divider again or reduce the size of the navbar keeping the location of the post/text intact to differentiate a bit
2) In the about us page, I’m not able to scroll down completely the page is jumping back again.
I removed the breadcrumbs (leaving the title and gray bar intact) by editing the CSS here…
/wp-content/themes/enigma/css/enigma-theme.css
change this:
.breadcrumb li {
display: inline-block;
}
to this:
.breadcrumb li {
display: none;
}