Hi,
It´s posible to remove the names of a vocabulary from block taxonomy filter search results.
vocabulary1 : tagA [remove] > vocabulary2 : tagB [remove]
to see only
tagA [X] > tagB [X]
thanks

Comments

solotandem’s picture

Have you considered overriding the theme_taxonomy_filter_block_current_content()?

esculcar’s picture

yes, I did it, thanks for the clue.
that´s what I did
simply change line 24 of taxonomy_filter.theme.inc whith this other:
$item['title'] = check_plain($term->name);

solotandem’s picture

The recommended approach is for you to override the theme function in your theme, not to change the code for this module. From your comment, it would seem you have done the latter.

See http://drupal.org/node/341628.

solotandem’s picture

Assigned: Unassigned » solotandem
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.