I have a taxonomy view with the following filters :
Taxonomy: Vocabulary = MY_CATEGORY
Taxonomy: Term ID <> MY_UNWANTED_TERM
I am trying to list all the terms within this category except for one unwanted term. It does not seem possible; the view never completes.
I assume that this would produce a query similar to
SELECT term_data.tid AS tid,
term_data.description AS term_data_description,
term_data.name AS term_data_name,
term_data.vid AS term_data_vid
FROM term_data term_data
WHERE (term_data.vid in ('4')) AND (term_data.tid != 32)
but the AJAX preview never completes so I don't know what is actually executed.
Is it possible to display a list of terms from a vocabulary while excluding some specific terms?
Thanks!
Comments
Comment #1
merlinofchaos commentedCan you attach an export of your view?
Comment #2
jmlavarenne commentedHere it is :
Comment #2.0
jmlavarenne commentedtypo
Comment #3
mustanggb commented