how to combind 2 taxonomy into 1
freelylw - July 1, 2007 - 00:33
I have set up lots term which under 2 different taxonomy, But I want to combind all terms which under 2 taxonomy into only under 1 taxonomy. is there a way to do this ???
I have set up lots term which under 2 different taxonomy, But I want to combind all terms which under 2 taxonomy into only under 1 taxonomy. is there a way to do this ???
=-=
investigate the taxonomy_batch_operations.module in the downloads area.
IMO the best way to handle
IMO the best way to handle this is to go directly to the database. Make a backup first (i don't want your data on my conscience!), but a line of SQL like this should do the trick:
UPDATE `term_data` SET vid = 2 WHERE vid = 1Here 1 is the vid of the old vocabulary and 2 is the vid of the new one.