Hi, how can i customize the block created with the module to accept parameters and rewrite the hrefs accordingly without annoying the collaspse/expand mechanism.
For example i would like the terms under the vocabs to hit a search.
is this possible? could someone enlight me
thanks.
Comments
Comment #1
jurivrljicak commentedNevermind, i did it like this
in f taxonomy_context_menu_tree()
added
$id = taxonomy_term_path($term);
$params = array('id' => $id);
In this way assigning an id to the anchor and then by javascript removing the href attribute and setting it again with my values.
Comment #2
lee20 commented