At work I have a Drupal 6 site in which image gallery navigation was done with the Custom Pager module + Views.
For my new personal Drupal 7 site, I need a navigation solution (next / previous links) for my cartoons, which are built as a unique content type. There is no 7.x version of Custom Pager.
I would also like to avoid flash / jquery / popup solutions - I want to keep everything as simple and clean as possible. So what are my options?
So far I am thinking I should
- create node--cartoon.tpl.php in my theme
- somehow add next / previous links in code to that template - there are a few Drupal 5 / 6 solutions floating around (Next / Previous API etc) but I can't find anything for 7.x
If all else fails, I can just add two extra fields in my cartoon content type and add those previous / next links manually - pain in the butt, but better than nothing
Has anybody found good solutions for node navigation (previous / next) for 7.x?
Thank you
The site in question: http://lensyoga.com/socialchicks
Comments
Had a quick look, seems like
Had a quick look, seems like pagers come with views in D7.
http://books.google.com/books?id=Lm73OdRVWTkC&pg=PA155&dq=drupal7+custom...
Sorry, being stupid, the link
Sorry, being stupid, the link is just for the normal pager in views.
People are working on a port
People are working on a port of Custom Pagers.
benjamin, Agaric
Flippy
I think that Flippy module would work perfectly for adding pagers to your cartoons.
Thank u
Thank u
Our team ran into problems
Our team ran into problems with flippy and translations and url aliases. I ended up trying a custom solution using the prev_next drupal API. Unfortunately, it has no support for multilingual content either.