Closed (fixed)
Project:
Taxonomy Filter
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
7 Mar 2011 at 17:13 UTC
Updated:
16 Jul 2011 at 18:21 UTC
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
Comment #1
solotandem commentedHave you considered overriding the theme_taxonomy_filter_block_current_content()?
Comment #2
esculcar commentedyes, 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);
Comment #3
solotandem commentedThe 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.
Comment #4
solotandem commented