Closed (fixed)
Project:
Taxonomy context
Version:
5.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
27 Dec 2007 at 20:21 UTC
Updated:
18 Jan 2008 at 21:54 UTC
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