No breadcrumb after selecting Page -> Disable Page title
-
Hello,
I created a page and disabled the option “Disable Page title”. I added, because of the H1 header title, a “section title” because I like that more than the default ones.
But then I would still like the page to have the “breadcrumb” at the upper left corner.
Is this possible?
My current settings:
– Page title design -> Default
– Show breadcrumbs -> On
Please help me out.
Tim
Hello,
It is not possible to show breadcrumbs having hidden the page heading. You can hide the page title with custom CSS and leave the breadcrumbs.
If you want to hide page title on once certain page add the custom CSS to page settings field http://prntscr.com/k7kztf :
.page-title.color-scheme-light .entry-title {
display:none;
}
In order to hide page title globally, add this code to Theme Settings > Custom CSS
Best Regards
Hi,
I have done the css for a specific page, cleared the cache, but displays still the main Title.
*Please check the link in the “private area” to see yourself.
Ps. If I do this on the global way you have mentioned, does this also impact all Titles for products etc? or just on pages?
Please check the url provider
Hello,
Try this code:
.page-title {
display: none!important;
}
This code is only for pages, you can use it globally, product title will remain.
Best Regards
That worked for the title…
But the Breadcrumb is also gone.
🙁
Hello,
Please try this code:
.page-title .entry-title{
display:none;
}
If it does not work please provide the site admin access.
Best Regards