Hello, How do I prevent the page title from displaying on the page. I want to display my own title in an H1 tag.
See the example in the following link.
http://www.cursodecomputacionbasica.com/cursos-de-computacion/
Fetching latest tweet ...
Hello, How do I prevent the page title from displaying on the page. I want to display my own title in an H1 tag.
See the example in the following link.
http://www.cursodecomputacionbasica.com/cursos-de-computacion/
Add this to Custom CSS or child-theme style.css
.page .entry-title {
display: none;
}
This removes the titles from the blog posts aswell. I only want to remove them from pages.
Did you try?
I did apply that code on your site through Firebug and it's working as it supposed to. Removes titles from pages only (not from posts).
This does not remove title from posts since pages have body class page and posts have single.
This topic has been closed to new replies.