Hi,
You can try hiding it using CSS:
https://share.getcloudapp.com/rRu7BEYE
footer.entry-meta {
display: none;
}
This hides the whole footer.entry meta including categories, tags links, comment links and post navigation (for single post pages).
if you only want to hide specific parts like the category and post navigation, you can try this. https://share.getcloudapp.com/KourKQBd
footer.entry-meta .cat-links , .post-navigation { display: none; }
You can also hide tags and comment links by adding “.tags-links” and “.comments-link” separated by a comma.
You can also try PHP filters to remove them completely:
https://docs.generatepress.com/article/generate_header_entry_meta_items/
https://docs.generatepress.com/article/generate_footer_entry_meta_items/
Alternatively, you might consider getting GP Premium.
With GP Premium, you can easily remove these parts by just a click of a button.
Here’s a demo video on how easy it is to remove them with GP Premium.
https://share.getcloudapp.com/GGuRdLel
Let us know if it works for you.
Thread Starter
scolol
(@scolol)
Hello,
This css you gave me worked :
footer.entry-meta .cat-links , .post-navigation { display: none; }
Thank you !
No problem. feel free to open a new topic if you have other questions.:)