Thanks for this module.
i would like to use one taxonomy with multiple menus.
I have two different views: news and photos.
I want to use the same taxonomy to categorize them both.
I think currently I can create identical vocabs, have one be synonym, for the other, and then apply taxonomy menu.
Is there another way to do this so that I don't have to replicate taxonomy info?
Regards,
Anietie
| Comment | File | Size | Author |
|---|---|---|---|
| #23 | taxonomy-menu-two-parents-for-terms-468174.patch | 23.78 KB | selvamkf |
Comments
Comment #1
dparrott commentedI would like this ability also. Right now, I have 5 data types all going off of the same taxonomy. And, I have custom pages for all of them. I plan to add more data types going off of this single taxonomy.
It would really help if this functionality were added.
Thanks.
Comment #2
socialnicheguru commentedI put this question forward as a possible workaround for now.
Comment #3
ngreenwood6 commentedYeah I would also like to be able to do this. I have a primary links and a secondary links menu that I would like to use the same vocabulary with. For instance:
vocab
-term
--term2
I want a primary and secondary menu using the same links for this. Is this possible?
Comment #4
indytechcook commentedThis is going to be part of the next version. #432048: Functions and User Interface for Version 3.0
Comment #5
indytechcook commentedComment #6
socialnicheguru commentedcould you assign the tax to a menu
Use nice menus to make multiple nice menus from the same taxonomy term
just a thought
C
Comment #7
VB2SEvolution commentedHi,
Did someone fint out a solution? One taxonomy => multiple menu
Thx
Comment #8
jdln commentedsubscribing
Comment #9
Miguel.Andrade commentedme to :)
Comment #10
QuentinB commentedditto
Comment #11
jvieille commentedSince 3.0 seems abandoned, what about this feature now?
Comment #12
dstolSame deal
Comment #13
brunorios1 commentedneed this too...
Comment #14
amfriedman commentedSubscribing. This missing feature is actually a major headache for me, in trying to update both the footer sitemap and the top navigation menu from the taxonomy... a pretty common use case.
Comment #15
le dendrite commentedAlso would like this.
just need to be able to select multiple parents under Menu Location, in vocabulary.
Please. Thank you.
Link to duplicate issue. http://drupal.org/node/498182#comment-5612748
Comment #16
zmove commentedSame here. I have a top dropdown menu that I repeat on a left sidebar when the user is browsing the categories. It would be really useful to be able to define several parent menu for one taxonomy.
Comment #17
hles commentedMoving to 7.x-2.x, won't happen in 6.x.
Comment #18
hles commentedClosed #1007048: Multiple menu support on the same topic.
Comment #19
hles commentedComment #20
johnvThis might be an alternative: http://drupal.org/project/menu_block
Comment #21
johnvFYI: The following D8-issue adds the 'add a menu link' to all entities, not only nodes: #1911080: Replace menu node form additions with entity reference field
A short introduction is here, under point 7.
It also mentions to support multiple menus per node, as per: #468174: Support taxonomy in multiple menus
Comment #22
edutrul commentedsubscribing
Comment #23
selvamkf commentedWe have had a similar requirement to have a single Taxonomy terms listed under two different menus. I tried to extend it, but uses variable_set in multiple places slowed down my progress. As a first step, I have placed two select list to choose two parent menus. Find the patch attached, by no means it should be considered as stable, it worked for us, we will do extensive testing later on.
But this can act as a start for those who wish to provide multiple parent menu support. I chose 7.x-1.x-dev version. Don't forget to run update.php!
Comment #24
postscripter commentedHello,
I also need to have one taxonomy to display on two different menus.
Do I need to apply the patch myself (I am a newbie), or is there any dev release I should isntall to get this feature? Because this seems not in the latest stable release which I have installed.
Thanks
Comment #25
drupal_simply_amazing commentedI tried to apply your patch. It seems working at first but when I edit the content that has a category then save it shows an error "Fatal error: Cannot use object of type stdClass as array /sites/all/modules/taxonomy_menu/taxonomy_menu.module on line 570".
Comment #26
drupal_simply_amazing commentedTo fixed this issue you need to change the
line 570 $term['plid'] = $plid; to $term->plid = $plid;
line 605 'mlid' => _taxonomy_menu_get_mlid($parent->tid, $parent->vid, $term['plid']), to
'mlid' => _taxonomy_menu_get_mlid($parent->tid, $parent->vid, $term->plid),
and line 607 to 'plid' => $term->plid in order this patch to work.
Comment #27
amit0212 commentedBelow are steps for create taxonomy menu in multiple views pages.
Step 1: Create two different views (i.e news, photos).
Step 2: Edit In news Select Taxonomy terms with type (gallery).
Step 3: Select display format with HTML list of fields panel fields.
Step 4: Save and same for photos views with same taxonomy type.
Comment #28
vladimirausThank you for your contributions.
Drupal 7 is no longer supported.
Closing this issue as outdated.