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

Comments

dparrott’s picture

I 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.

socialnicheguru’s picture

I put this question forward as a possible workaround for now.

ngreenwood6’s picture

Yeah 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?

indytechcook’s picture

Status: Active » Postponed

This is going to be part of the next version. #432048: Functions and User Interface for Version 3.0

indytechcook’s picture

Status: Postponed » Closed (duplicate)
socialnicheguru’s picture

could you assign the tax to a menu
Use nice menus to make multiple nice menus from the same taxonomy term

just a thought

C

VB2SEvolution’s picture

Hi,

Did someone fint out a solution? One taxonomy => multiple menu

Thx

jdln’s picture

subscribing

Miguel.Andrade’s picture

me to :)

QuentinB’s picture

ditto

jvieille’s picture

Status: Closed (duplicate) » Active

Since 3.0 seems abandoned, what about this feature now?

dstol’s picture

Status: Active » Postponed

Same deal

brunorios1’s picture

need this too...

amfriedman’s picture

Subscribing. 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.

le dendrite’s picture

Also 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

zmove’s picture

Same 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.

hles’s picture

Version: 6.x-2.x-dev » 7.x-2.x-dev
Status: Postponed » Active

Moving to 7.x-2.x, won't happen in 6.x.

hles’s picture

Closed #1007048: Multiple menu support on the same topic.

hles’s picture

Title: Same taxonomy used in multiple menus? » Support taxonomy in multiple menus
johnv’s picture

This might be an alternative: http://drupal.org/project/menu_block

johnv’s picture

FYI: 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

edutrul’s picture

subscribing

selvamkf’s picture

Version: 7.x-2.x-dev » 7.x-1.x-dev
Issue summary: View changes
StatusFileSize
new23.78 KB

We 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!

postscripter’s picture

Hello,
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

drupal_simply_amazing’s picture

I 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".

drupal_simply_amazing’s picture

To 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.

amit0212’s picture

Below 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.

vladimiraus’s picture

Status: Active » Closed (outdated)

Thank you for your contributions.
Drupal 7 is no longer supported.
Closing this issue as outdated.

Now that this issue is closed, review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, credit people who helped resolve this issue.