I’ve installed Iced Mocha as a theme to use for my WordPress site in combination with Event Espresso 4.
When I create a page, the name of the page is automatically shown on each page. It happens in the standard template that is the default for each page under Page Attribute section on the right hand of the screen. Even if I choose the “One Column, no sidebar” template, the name of the page is displayed as a title/header on the page.
Is it possible to create a new page template out of the standard or “One column, no sidebar” template where the page name does not appear as a title/header on the page automatically?
It’s designed to show the title of the page, and it’s possible to create a page template that doesn’t show the title. If you’re going for no page titles everywhere though, it’s much simpler to just hide the page title with CSS.
This CSS will hide the titles for all pages:
.page .entry-title {
display:none;
}
If you want to hide the title for only one page, you’d use this instead:
.post-123 .entry-title {
display:none;
}
In the above, you swap in the actual page ID for 123.
If you do not have a child theme set up, you can install a plugin like the Reaktiv CSS Builder plugin and it will add an editor to the Appearance menu where you can add your custom CSS.
It works!
Discovered that a space snuck in between display and the colon.
Thank you so much Josh!
Kind regards,
Andreas
Viewing 5 reply threads
The support post ‘Iced Mocha’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.