I was wondering if it's possible to hide the title name of a unit.
I tried to do this by deleting the title name, but it removed the name in the course timeline too.
Thank you.
Try hiding it via custom css.
Also share screenshot where exactly are you trying to hide the unit title.
I'm not sure what the css would be.
I'm trying to hide the page title on the page it self. Please see the screenshot attached.
However, I only want the title to be hidden on certain pages. Is this possible?
Thank you.
Try adding the given css from wp-admin -> appearance -> customize -> custom css:
.unit_title h1 {
display: none;
}
That worked brilliantly, thank you!