I'm trying to create a view that returns a list of the latest updated nodes but you can move items to the top by adding them to a nodequeue.
I would have thought that sorting the view by the nodequeue position and then updated time would accomplish this but it doesn't appear to work.
I'd like to use this functionality or similar functionality in more than just this view so the sticky feature of drupal wont do the trick for me.
Maybe I'm missing something.
Any suggestions?
Comments
Comment #1
ezra-g commentedHow about sorting by updated time and then nodequeue position (changing the order of the sorts)? I think that the nodequeue might override other sorts if this doesn't great work.
Comment #2
mnapier commentedhmm, that didn't seem to do the trick but in playing with that I ordered the nodequeue criteria descending and that made the node in the queue start overriding the updated time.
So I flipped the view of the nodequeue so it "appears" to operate correctly.
Thanks for the suggestion.
Comment #3
ezra-g commentedGreat. Thanks!