Hello,
This is called “breadcrumb”, if you did not add a plugin to have it, then it’s produced by your theme.
You should search in the theme settings if you can disable it
Thread Starter
lajang
(@lajang)
Hi Sebastien
Thank you for your reply. I have disable it but it didn’t work. Not sure where they put it.
-
This reply was modified 4 years ago by
lajang.
The breadcrumb code is very likely lard-coded in the child theme.
The parent theme supports breadcrumbs, but from the theme’s demo, I see the breadcrumb has various CSS classes and IDs in the HTML code to facilitate styling. The breadcrumb on your website has no class or ID at all, which makes me think this is an “after-market” feature that was added to the child theme, and not the breadcrumb feature you see in the dashboard.
Let’s try this custom CSS to see if you can select and hide the breadcrumbs, without messing up or hiding anything else on the pages.
.pagetitle_parallax_content.college-course-body > ul:first-child {
display: none;
}
If this doesn’t work ((or hides something else), then I’m afraid you’ll need to dig into your child theme’s PHP files and look for the breadcrumb code and remove it.
Standing by for feedback.
Thread Starter
lajang
(@lajang)
Hi George,
Thank you Bro. It really work.