By Julia_yl on
I created a menu corresponding Taxonomy one by one
-----news (taxonomy/term/1+2+3 error)
-------news 1 (taxonomy/term/1 OK)
-------news 2 (taxonomy/term/2 OK)
-------news 3 (taxonomy/term/3 OK)
but it error when I save it at node/17#overlay=admin/structure/menu/item/322/edit
message as below
The path 'taxonomy/term/1+2+3' is either invalid or you do not have access to it.
There worked Primary menu at drupal 6.
Comments
Anyone has the problem?
I searching most of about, but did not get solution?
Function has been removed from the taxonomy module
I also noticed that this functionality has been removed, but check out the following page for links to the reason and a possible solution: http://drupal.org/node/1093708
Again, anyone has solution?
I still could not fine solution to fix it?
A solution with Views module
I had the same problem but i found a solution with views module. Firstly, I enabled the default taxonomy_term view. Also, at the page view and specifically at the CONTEXTUAL FILTERS >> Taxonomy: Term ID (with depth), i enabled the "Allow multiple values" choice:
"Allow multiple values"
If selected, users can enter multiple values in the form of 1+2+3. Due to the number of JOINs it would require, AND will be treated as OR with this filter.
I should tell you that i am using this solution until now, because i am using also the Views module on all my Drupal sites.
"Remove multiple tid and depth handling for core taxonomy paths"
You could also see at this issue "Remove multiple tid and depth handling for core taxonomy paths" http://drupal.org/node/503456, that the solution with views is valid #Views 2 can recreate those paths, and also comes with default views which provide the same functionality - and it does so in a much more generic way.
thanks for your solutio, it does not work for me
I tried in your solution, then I click menu as
taxonomy/term/1+2+3 nothing
taxonomy/term/3 results listed
enable taxonomy_term view, do I need some setting? it is for menu?
At the page view and specifically at the CONTEXTUAL FILTERS >> Taxonomy: Term ID (with depth)
the page(named basic list) view works with Filter criteria as Content: Has taxonomy terms (with depth) (=XX) | Settings , nothing with CONTEXTUAL FILTERS
when should set CONTEXTUAL FILTERS?
what is different between
* Filter criteria
* CONTEXTUAL FILTERS
in the same page views
Thanks
Thanks that worked for me + I also enable the vocabularies that they were unable in this particular view.
I can confirm that the
I can confirm that the Multi-term Views module, along with Views enables this functionality in Drupal 7. The Taxonomy term View needs to be enabled (probably best to clone it first).
Once the above is all in place, taxonomy/term/1+2+3 lists nodes with terms 1 or 2 or 3 and taxonomy/term/1,2,3 lists nodes with terms 1 and 2 and 3.