Hi,
In drupal advance search i am able to see all the vocabulary and terms in a single select area where multiple selection is allowed. I am having nearly 200 terms under 13 vocabulary. Its very difficult for someone to scroll down all those and do select. So i wish to split the taxonomy area on the basics of vocabulary as same as like the way the taxonomy is presented in create content page. But i am not sure where to edit in order to split it up.
I found in node.module page, the below codes which is displaying the taxonomy in search page.
if ($taxonomy = module_invoke('taxonomy', 'form_all', 2))
{
$form['advanced']['tags'] = array(
'#type' => 'select',
'#title' => t('Use Ctrl for multiple selection'),
'#prefix' => '
'#size' => 40,
'#suffix' => '
',
'#options' => $taxonomy,
'#multiple' => TRUE,
'#collapsible'=>FALSE,
);
}
------- currently its call the taxonomy array. What should i do in order to split up the taxonomy on vocabulary basics. Please help me.
with regards,
Don