Removing Title from single post - Tutor LMS

Hello,

I am looking to remove the post title from a page (see secured note).
Is this possible through the X theme?

Hello @anrozier1925

Thanks for writing to us

To hide the post title from the single posts of Tutor LMS you can use this custom CSS code X/Pro--->Theme Option --->CSS

.single-courses h1.tutor-course-header-h1 {
display: none;
} 

The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.

Hope it helps you.
Thanks

Thanks!

I am looking to remove this portion of the page:

I know there is a global way to remove this, but is there a way similar to above to remove just the image above for this page?

Hi @anrozier1925,

I don’t see an image on the image you show, can you point out which part of the page do you want to hide so that we can help you with it.

Thank you.

Sorry for the late reply. It is the part that says “News and press release”. I would like to remove that entire bar for that page only.

Hi @anrozier1925,

To remove the entire bar only on that page, please add the code below in your X > Theme Options > CSS.

.single-courses.postid-38093 .x-header-landmark {
	display: none;
}

Please note that custom CSS code is outside the scope of our support. Issues that might arise from the use of custom CSS code and further enhancements should be directed to a third-party developer you can avail One where we can answer questions outside of the features of our theme.

Hope that helps.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.