I have a website with about 200 pages but as I am having a bit of a redesign I wanted to remove the page title from them all. Before I go through the whole site and check the tick box 1 page at a time is there any way to do this in bulk?
Hi there,
You could use write some custom CSS to get rid of the page titles.
X’s page titles are wrapped in entry-header class selector so if you want them not to be displayed on the page, you can use:
.entry-header {
display: none;
}
You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.