Archived topic
Removing the blog catagories links to other blog pages
5 replies · Started by Siong Boon Lim on August 5, 2017
I have the following blog page
http://www.fuel-your-passion.com/belief/
At the end of the blog page, there is the catagory and 2 links to my other blog post.
May I know how do I remove those?
They were not in my edit page.
Thank you.
Hi there,
That is a planned feature.
Try this CSS for now:
.post-navigation {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
The following linking to other blog is now gone, but the category folder is still there.
Any way to remove them completely?
I did not want them to be there automatically.
Tried looking everywhere but there seems to be no options to remove this link which was automatically inserted.
This should CSS should remove them both:
footer.entry-meta {
display: none;
}
This completely removes everything. Thank you very much!!!
No problem!