• Resolved jrinderknecht

    (@jrinderknecht)


    Hi,

    I am attempting to remove the title tag from the blog page. I do not want it to display “Blog” or “Single Post” above the blog post. I was able to turn that off for all of my other pages by checking “Disable Page Title” in the admin area. You can see my site here : https://www.jr-webservices.com

    I am using the current version of WordPress 4.6.1 running Tesla Child theme.

    • This topic was modified 8 years, 6 months ago by jrinderknecht.
Viewing 2 replies - 1 through 2 (of 2 total)
  • If you don’t mind a bit of CSS, then you can use this:

    
    /* Don't display page titles */
    .titleContainer.titlePage .title {
        display: none;
    }
    
    Thread Starter jrinderknecht

    (@jrinderknecht)

    Thank you I did try some variations of the code above in the editor and in the browser inspector with no avail before posting this and it was not budging. Finally I found the combo of classes that worked you were close. Thank You ThePixelMe!

    /* Don’t display page titles or border */
    .titleContainer.titlePage {
    display:none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Title Tag from Blog and Single Post’ is closed to new replies.