I have two separate taxonomies, Brand and Country:
Brand:
BMW
-M3
-M5
Mercedes
-GL 450
-C300
Countries:
United States
Spain
United Kingdom
I want to be able to rebuild the brand tree under each country like this:
United States
-BMW
--M3
--M5
-Mercedes
--GL 450
--C300
Spain
-BMW
--M3
--M5
-Mercedes
--GL 450
--C300
United Kingdom
-BMW
--M3
--M5
-Mercedes
--GL 450
--C300
So ultimately I will have urls like:
/united-states/bmw/m3
/spain/bmw/m3
/spain/bmw/m5
etc
And I'll need summary pages like for each country for SEO spider to be able to crawl.
And then when I'm on these pages, I'll need to be able to pull the taxonomy id for both country and brand and push it into my view. I've searched on this issue but can't seem to find anything.
Thanks!
Comments
=-=
per https://www.drupal.org/node/643758 please edit your post and move it to the 'post installation' forum.Thank you.I use
I've used https://www.drupal.org/project/hierarchical_select previously which works quite well
Peter J Lord
http://peterjlord.co.uk
Hi Peter, thanks for the
Hi Peter, thanks for the response. I checked out that module but I don't see how it will allow me to bind together 2 seperate taxonomies as I mentioned. Am I missing something?