I'm building a site with Drupal 7.2, and using several useful modules (Views, Display Suite, and 20+ more).
I've added an image field in a content type (article), and set the 'Field Settings' -> 'number of values' to 5, which means users can upload 5 images for this field.
Under 'Full Content' view mode, I'd like to display all the images, but How DO I display only ONE image under 'Teaser' mode? Is there any modules can do this?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

I solved this problem by adding a new template for this field type like field--field_image.tpl.php in my case with the following code:

// Reduce image array to single image in teaser view mode
if ($element['#view_mode'] == 'teaser') {
  $items = array(reset($items));
}

print render($items);

Hope this helps.

Edit: Here's the (probably) correct way to do it:

function MYTHEME_process_field(&$vars) {
  $element = $vars['element'];

  // Field type image
  if ($element['#field_type'] == 'image') {

    // Reduce number of images in teaser view mode to single image
    if ($element['#view_mode'] == 'teaser') {
      $item = reset($vars['items']);
      $vars['items'] = array($item);
    }

  }

}
link|improve this answer
~it works, thank you!~ Let's wait and see if there's a better solution~ – MessyCS Jun 15 '11 at 11:29
Great. In general I guess using a preprocess hook is more elegant. – dreipunktnull Jun 15 '11 at 11:32
Yep, that's the spirit of drupal – MessyCS Jun 15 '11 at 11:39
Great! That's the preprocess, Thanks a lot~ – MessyCS Jun 16 '11 at 3:38
feedback

It did not work for me, i had to adjust the code sligthly:

function MYTHEME_process_field(&$vars) {
  $element = $vars['element'];

  // Reduce number of images in teaser view mode to single image
  if ($element['#view_mode'] == 'node_teaser' && $element['#field_type'] == 'image') {
    $vars['items'] = array($vars['items'][0]);
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.