Combine vocabularies for D6
olegnaumov - April 20, 2009 - 09:33
| Project: | Jump |
| Version: | 5.x-1.1 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
Hi! I'm using this great module to output taxonomy terms. Is it possible to output terms in one dropdown list from two or more vocabs? As if I could print "jump_quickly(1+2, 'taxo');"... Any ideas?
Thanks in advance!

#1
The helper jump_menu_get_taxo_options() fills in an options array, so try something like this (for the D5 version):
<?php$options = array();
jump_menu_get_taxo_options($options, 1);
jump_menu_get_taxo_options($options, 2);
print jump_quickly($options);
?>
#2
Any way to get this to function with Drupal 6. Looks like a great implementation.
#3
I just took a quick look at the 6.x code and the same business as in #1 ought to work in D6 -- have you given it a try yet?
#4
Not yet as I did not want to mess something up if it was 5 specific. Will give it a shot.
#5
Works Great but I just needed to pull in a list of all my vocabs in one drop down. I did not realize that this was the quick jump for the Taxonomy. How would I find the vocab call? can I use vocab instead of taxo or vid?
Thanks all for the help. This module is really cool.
#6
I tried all combos in the docs but what I wanted was a dropdown that would list all of my vocabularies, then a user could click go to hit the subterm page is this possible?