Disable Post Title Option Disappeared

Hello,

I used to be able to select the option to disable the post title using the post settings options, but when I tried to do this today, the option seems to have gone? See screenshot…

Hello Scott,

Thanks for writing in!

I don’t think we had an option to disable post title. You can disable the page title from Cornerstone settings panel but for posts I don’t recall having that option.

However, you can use CSS to remove posts title. Please add following CSS under X > Theme Options > CSS:

  • If you would like to remove posts title throughout the website, please use following CSS:
.entry-title {
    display: none;
}
  • If you would like to remove posts title from specific post, please use following CSS:
.postid-3594 .entry-title {display: none;}

In above code please make sure to replace post id 3594 with your own. To find the post Id, please take a look at following resource.

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

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