Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
I would like to have the links following articles / previous article, only in the pages of the articles. And to remove them at the end of each extract on the blog home page.
http://test.vuedailleurs.com/blog
Does anyone has a solution?
Thank you in advance.
Philippe
Offline
Yeah, it doesn't make sense to have it on your blog roll. Maybe a bit css magic?
.blog .adjacent-posts-links {
display: none;
}
But I think that's something that will be fixed in a future update.
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Daniel thank you, it works fine!
Philippe
Offline
Daniel thank you, it works fine!
Philippe
:-)
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Hello,
I noticed that the links / previous add at the last update of Wordpress module also pass in the pages of the blog.
You can see them on my imprint pages, site map, etc.
And I'm not sure that it is relevant at this point.
Philippe
Offline
Maybe something like this:
.blog .adjacent-posts-links,
.archive .adjacent-posts-links {
display: none;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Hello Daniel and thank you for the code.
Unfortunately it does not work. The links are always present on the pages.
Philippe
Offline
Hello Daniel and thank you for the code.
Unfortunately it does not work. The links are always present on the pages.
Philippe
Your phoneographie.css doesn't show the modifications. Where did you put them?
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Sorry, I did not put in test.vuedailleurs.com, but http://phoneographie.com
Philippe
Offline
Sorry, I did not put in test.vuedailleurs.com, but http://phoneographie.com
Philippe
hmm... it works for me. I don't see the prev/next links in http://phoneographie.com/blog/category/voyages/. Which pages were you looking at where it still shows up?
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Links are always present in these pages there for example:
http://phoneographie.com/blog/mentions-legales/
http://phoneographie.com/blog/plan-du-site/
Philippe
Offline
looks like you need to make the css more specific for those types of pages:
dl.adjacent-post-links is the selector at that point
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Hi Philippe, these are page posts and not blog posts! This means that the CSS needs to be further extended:
.page .adjacent-posts-links,
.blog .adjacent-posts-links,
.archive .adjacent-posts-links {
display: none;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Rod
This works for pages, but the links disappear as for the articles!
Daniel
This impeccably works!
Thanks to you two.
Philippe
Offline
Rod
This works for pages, but the links disappear as for the articles!
Daniel
This impeccably works!
Thanks to you two.
Philippe
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline