duplicated blocks with images creates then I try to upload some images.
For example: then I try to upload 3 images I'll get: block with 1st image, next block with 1st, 2nd image, next block with 1st, 2nd, 3rd image.

Comments

danielbeeke2’s picture

I've got this too :(

danielbeeke2’s picture

Found it,.

it's because the open atrium theme ginkgo

template.php

function ginkgo_content_multiple_values($element) {
$output = theme_content_multiple_values($element);
$field_name = $element['#field_name'];
$field = content_fields($field_name);
if ($field['multiple'] >= 1) {
return "

{$output}

";
}
return $output;
}

you have to remove or improve this function

greetings Daniel