It would be nice if this module can integrate the term icons from the taxonomy Image module.
If anyone as an idea for a hack, thanks
It would be nice if this module can integrate the term icons from the taxonomy Image module.
If anyone as an idea for a hack, thanks
Comments
Comment #1
dgastudio commentedany update?
Comment #2
dgastudio commentedplease help!
i added to taxonomyblocks.module:
and modified:
$tree[$termname]['link']['title'] = $taxo_image. $termname .' ('. $count .')';but as result i have
<a href="/companies/term/76" title="company 1"><img src="http://postavshik.by/sites/default/files/category_pictures/1.png" alt="compan 1 " title="company 1 " width="70" height="58" class="taxonomy-image-term-76 taxonomy-image-vid-1" />company 1 (1)</a>that i'm doing wrong? where i have to insert $taxo_image?
Comment #3
moejarv commentedReally not sure if you still need answer to this...
You need to add an option " html = true" to the $tree array, so the l function will spit out the img tag.
Add this line somewhere in the taxonomy_recursive_array_builder
$tree[$termname]['link']['options']['html']=true;And thanks for your lead! without it I won't find out how to do this!