Archived topic
previous/next posts
33 replies · Started by ian on March 11, 2015
Is it possible to remove the next/previous post links at the bottom of a single post ?
Note if css is the way to do it
I already have
.post-navigation {
display: none;
}
in simple css
Hmm, that should do the trick. Can you link me to the page where it's still showing up?
Sorry you misunderstood
That css does work
I was wondering if there was or should be an option for this within GP
As an aside where is the best place to put this sort of thing
currently it is in simple custom css
is better in a child theme or GP HOOKS OR SOMEWHERE ELSE in your opinion
Still a beginner but the light is slowly dawning
Can you link me to a page where it's still showing up? That CSS should work.
You can find some CSS options in my signature below :)
Thanks for that
I will create my own child theme
No problem :)
Hi,
is it possible to deactivate them completely in the Code, not only by CSS?
Alex
Something like this should work: https://gist.github.com/generatepress/81709146251f7a9b645a
Great, it works!
Many Thanks.
You're welcome :)
I am trying to remove the next previous page numbers from the bottom of the page .. I have tried the options listed above but not luck.. can you help?
Without the numbers how will users navigate to the next page of posts?
I plan on the other post being view by a menu to that category.
Try this CSS:
.paging-navigation {
display: none;
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
Let me know :)