Hi,
I would like to use this module for a seminar view (showing different sessions, sorted by date). I've followed the instructions (and am using default queries) and no Prev / Next buttons show up on the nodes clicked into from the view. Tried on both a page and block view.
I'm wondering if there's something missing in the view not described - looking through the module there doesn't look like any dependencies.
Comments
Comment #1
gaëlgHow are the links to the nodes in your view? Do they contain GET parameters? It should look something like http://mysite.com/node-path-or-alias?vnc=SOME-HASH&vnp=X.
If they don't look like that:
If they already look like that:
Comment #2
chernetsky commentedI had the same problem until switched my view to fields view format.
But some kind of problem still remains: I have these good 'complex' links (../node/NODE_ID/vnc=d_cQK_Vp3Y-E_AIMjJlQoXlN35Ca0kSkM8GU7P8KqJE&vnp=1) only on titles. But if I add node image field to display and choose "Link image to content", these links remain 'simple' (../node/NODE_ID).
Also I get 'simple' links if I add to display Content: Path field.
The first solution in my mind: to write my custom module to manualy extract proper paths from Titles and use them where I want...
Comment #3
gaëlgIt's a problem in views_navigation_views_data_alter(). It only changes the link url if the field handler is "views_handler_field_node". I'll look further ASAP, but image field and path field may use a subclass of views_handler_field_node.
Comment #4
chernetsky commentedI managed Content: Path field.
In file views_navigation.module file changed function views_navigation_views_data_alter():
Added into views_navigation.info file:
files[] = views/views_navigation_handler_field_node_path.incCreated new file views/views_navigation_handler_field_node_path.inc with this content:
After these changes I can use 'Content: Path' path in my view to rewrite links in following fields or something like that.
Comment #5
gaëlgThank you chernetsky. I refactored it a bit and added other handlers. Fixed in dev by commit 9e83e2d.
Comment #6
gaëlgReleased in beta3.