- π¬π§United Kingdom JamesOakley Kent, UK
I realise this issue is closed. But just to say that the solution from chrisz001 works for me on Drupal 10.4 and Views (in core)
I'm not sure if this is a bug or just me, but I can't seem to get my views to stop displaying multiples of the same term. I added filters to reduce the terms by taxonomy and if they are published, but I still seem to be having problems.
I'm using the latest D7 RC2 and the latest views dev.
So this is my setup, I have 2 nodes/posts tagged with the category (term) "Web Development". In my block view that I created I have the following:
SELECT node.vid AS node_vid, taxonomy_vocabulary.name AS taxonomy_vocabulary_name
FROM
{node} node
LEFT JOIN {taxonomy_index} taxonomy_index ON node.nid = taxonomy_index.nid
LEFT JOIN {taxonomy_term_data} taxonomy_term_data ON taxonomy_index.tid = taxonomy_term_data.tid
LEFT JOIN {taxonomy_vocabulary} taxonomy_vocabulary ON taxonomy_term_data.vid = taxonomy_vocabulary.vid
WHERE (( (node.status = '1') AND (taxonomy_term_data.vid IN ('3')) ))
ORDER BY taxonomy_vocabulary_name ASC
I'm not sure why its still displaying the term twice. I even checked in my tables and there is only one "Web Development" term.
I tried both Taxonomy: All terms and Taxonomy: Term and used a filter for only my Categories taxonomy. And in All terms I tried Limit terms by vocabulary -> Categories. This is also set on my defaults so I know it's not just that I forgot to override the default view in my block.
Any suggestions? I even deleted the taxonomy, the the field on the article node page and the view, then restarted all of them all over again.
Thanks
Closed: cannot reproduce
3.0
Views Data
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I realise this issue is closed. But just to say that the solution from chrisz001 works for me on Drupal 10.4 and Views (in core)