Archived topic
Delete word HOME from homepage
5 replies · Started by Jagi on June 5, 2020
When I use CSS .entry-title {
margin-bottom: 0;
display: none;
}, it does delete the word home, but then it also deletes the titles of my posts in different categories. Is there anyway to delete this word without affecting posts. I have turned it into a page and have added CSS for that, but still not hiding the word home.
Hi there,
Try using the disable element metabox to disable the Content Title of that page:
https://docs.generatepress.com/article/disable-elements-overview/
Let me know if this helps :)
Thank you this has worked, is there one for categories as well.
I clicked through some category archives and don't see the titles.
Have you solved it?
I used CSS code, but was wondering if there is another way to do it.
You should be able to add this PHP snippet:
remove_action( 'generate_archive_title', 'generate_archive_title' );
Adding PHP: https://docs.generatepress.com/article/adding-php/