Ok, here s the problem: I have a list of contacts, which i have created in views, that are grouped by taxonomy terms like so:
(term:) Staff: (node:) John Doe john@doe.com (node:) Jane Doe jane@doe.com (term:) Management: Fred Doe fred@doe.com and so on...
As it is now, i have no idea what decides the order of the taxonomy terms (ie: why is the Staff nodes coming before the Management nodes ).
So what i need to do is to be able to sort the order of the terms, and also the order of the nodes in each category (or what you would call it).
I have tried to sort the terms by weight, but the only thing that happens is that i get duplicated nodes output, and nothing happens with the order of the actual terms.
As for the order of the nodes, i was thinking that maybe a hidden CCK-field with some sort of weight, but i dont know. But the biggest problem is still the order of the categories.
If anyone has an answer to this it would be very helpful.
Thank you.
EDIT:
Strange, i tried that before i asked the question, but now it seems to work. However i still get duplicated nodes when i sort by taxonomy weight, for some reason. I really need to get rid of those. Heres how my view setup look, if its any help:
Fields: taxonomy=all terms (limited to one vocabulary) image attach contentdont know if that information helps at allSort criteria: Taxonomy weight:descending
Filters: Taxonomy term id(with depth) // to filter out what page it belongs Node type : contact node published : yes
/Anders