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.
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
Comment #1
danielbeeke2 commentedI've got this too :(
Comment #2
danielbeeke2 commentedFound 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 "
";
}
return $output;
}
you have to remove or improve this function
greetings Daniel