my content type, plan to have one or more 'articles'.
the following php code, I can get them all:
<?php print render($content['field_articolo_di_riferimento']);?>
and I get the following result:
I would like to remove the title in bold above the links of the articles, so I tried:
<?php
$lenght = count($field_articolo_di_riferimento);
for($i=0; $i<lenght; $i++){
print render($content['field_articolo_di_riferimento'][$i]);
}
?>
but does not work. It is probably the wrong way I use to count the length of the array.
this is the structure of my content type: