Closed (fixed)
Project:
Nodequeue
Version:
5.x-2.2
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
23 Aug 2008 at 19:09 UTC
Updated:
20 Dec 2009 at 15:30 UTC
Hi,
I have the following problem: I have a node queue that contains a lot of nodes that have the same title and are from the same author. So reordering them in the queue is quite challenging.
Is there a way to display more infos than just the title?
Markus
Comments
Comment #1
ezra-g commentedNot currently, although having fields display on the queue manipulation would be a great feature request. It could provide, for example, a new way of creating image galleries.
Another thought is that "move up/move down" links could be added to node teasers which are displayed in some kind of View that, when the links are clicked, could refresh the list of teasers so the teasers would appear in the new queue order.
Comment #2
markusH commentedCool idea ezra-g. The gallery thing is exactly my problem right now.
Yeah, the most flexible solution would be to have a special view-type where we can add whatever is needed from the nodes. and a column for the "move up/down" controls.
I alway try to make the backend as easy and uncluttered as possible for the users. So, this would be a huge step forward.
Would it make sense for now to introduce a theme_nodequeue_arrange_subqueue_entry_title function?
Comment #3
neoliminal commentedComment #4
neoliminal commentedPerhaps a theming solution is best here. This allows people to add any columns they want to associate with a nodequeue reference, regardless of the content of that nodequeue entry.
I was basically doing that with my previous solution here:
http://drupal.org/node/371695
This was for a gallery solution.
Comment #5
ezra-g commentedThanks for pointing to your solution, @neoliminal. This feature could be implemented in a configurable fashion with the solution proposed in #299111: Display CCK fields while manipulating a queue.
Comment #6
stormsweeper commentedI actually handled this (for photo gallery nodequeues) by using hook_form_alter, although the code looks pretty similar:
I'm not huge fan of N+1 solutions, but it works well enough.