We were able to successfully hide the title but show the breadcrumbs on the left side of the header using CSS for all our pages however on the Events pages and Calendar page, the title for the page still appears (see images below).
We have the heading settings configured to only show breadcrumbs and the CSS to display the breadcrumbs on the left however these pages seem to show the title which we don’t want.
Please advise how we can only have the breadcrumbs without the title on the header for these pages.
Thank you
Sure thing Yigit!
Please see below
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single-tribe_events .main-title.entry-title {
display: none!important;
}
Regards,
Yigit
Thanks Yigit that worked great for the events, really appreciate that!
I tried the following CSS to do the same for the calendar page and although it made the title disappear, please confirm that it is correct:
.post-type-archive-tribe_events
.main-title.entry-title {
display: none!important;
}
Thank you!!