Hi,
To hide titles of child pages on the Front Page, please use this custom CSS:
.home.page-template-panels-page .panel-section .entry-header {
display: none;
}
Thanks,
Taras
Hello Taras,
How can I remove the title from pages other than the home?
Thank you
Hello,
I am sorry for delay in responding.
If you want to remove title from other pages, you’ll need to know the IDs of that pages. Here is a documentation on how to find the Page ID: https://goedemorgenwp.com/finding-page-and-post-ids-in-your-wordpress-site/
Once, you know the ID, you can use this custom CSS:
.page-id-2 .entry-header .entry-title {
display: none;
}
Where 2 id the ID of the page.
Hope this helps.
If you have a new question which is not related to this topic, please start a new thread to avoid delays.
Thank you,
Taras
Hello Taras,
The last method is not working for child pages
Could you please post a link to the page where you want to hide the images?
Thank you,
Taras
Hi Roberto,
Thank you for the link.
Please use this custom CSS to hide page titles of child pages:
.page-id-1405 .panel-section .entry-header {
display: none;
}
Where 1405 is the ID of the parent page.
oh I see, I have to put the ID of the parent page, thank you!