Hi,
This was just the module I was looking for on D5 to get icons before menu-items. Thank you!
But with taxonomy_image something is not going ok I think, sorry.
First when I add an imageset to a taxonomy term, admin-message with submit tells me the image is removed...
Second I do not see the taxonomy_image imageset Icon before the "automated" menu-block of taxonomy terms.

Thanks a lot in advance for going into this!
Greetings,
Martijn

CommentFileSizeAuthor
#1 imageset_taxonomy_image.JPG130.43 KBsummit

Comments

summit’s picture

Category: support » feature
StatusFileSize
new130.43 KB

Uploading picture to give better understanding of situation, and I think it is a feature request right?
Greetings, Martijn

pvb-d@drupal.ru’s picture

The first: it is feature of work, the message on removal image it is possible to ignore
The second: with what help of the module display "automated" menu-block of taxonomy terms.
I can not reproduce a situation

summit’s picture

Hi,
Thanks for your answers.

For the second: the http://drupal.org/project/taxonomy_context module is the one I am using for the automated menu-block.
Thanks for going into this in advance!

Greetings, Martijn

pvb-d@drupal.ru’s picture

The first that has come, to use a patch:

taxonomy_context.info v5.x-1.0 line 468 insert the following code

//      $link = l($term->name, taxonomy_term_path($term), $params);

      $save_error_reporting = error_reporting(); 
      error_reporting(0);
      $link = l((function_exists('taxonomy_image_display') ?
        taxonomy_image_display($term->tid, NULL, NULL, array('wrapper' => false)):''). check_plain($term->name), 
        taxonomy_term_path($term), $params, NULL, NULL, FALSE, TRUE);
      error_reporting($save_error_reporting);