Hi !

I'm using Drupal 6.10 (A fresh install, just to test this module) with your latest development snapshot. I have enabled the module as described in the readme file, added a filefield/image to one of my conten types.

When I take a look at the display fields tab, the "Image with annotations" option does not show up in te drop down.

Any idea why this would be ? One of my students has exactly the same issue, which is why I was trying to recreate the error in the first place.

Anything I can check to help you figure out what the issue might be ?

Best,

Wouter

Comments

Wouter Van den Bosch’s picture

A short update. Looking at the module's code, could it be that, in order to be able to use the filefield/imagefield module combo

function image_annotate_field_formatter_info() {
  $formatters = array(
    'image_annotate' => array(
      'label' => t('Image with annotations'),
      'field types' => array('image'),

needs to be changed to

function image_annotate_field_formatter_info() {
  $formatters = array(
    'image_annotate' => array(
      'label' => t('Image with annotations'),
      'field types' => array('filefield'),

This way the display mode does show up in the dropdown.

Wouter Van den Bosch’s picture

Status: Active » Closed (duplicate)

Update. This is a duplicate of http://drupal.org/node/424982

Should have gone through the list in more detail. Closing this thread.