Looks fixed to me. I now see:
array(1) { [“group”]=> array(1) { [1]=> array(3) { [“title”]=> string(6) “hicadv” [“textarea”]=> string(224) “Utvel et laniet dolestion con premo omnisitatur antis endis prepre eicilici nesteceaque ma dolenes simuscidit odisitem eossim repratur, quia cus et fuga. Soluptae. At vel molla quo ist erspelles utemquunt. > https://www.hicadv.it” [“image”]=> NULL } } }
Remove the following lines:
<?php
$fields = ff_get_all_fields_from_section('group', 'meta', 'post', $post->ID);
var_dump($fields);
?>
Replace them with:
<?php
$fields = ff_get_all_fields_from_section('group', 'meta', 'post', $post->ID);
if(!empty($fields)) {
foreach($fields as $field) {
echo '<h3>' . $field['title'] . '</h3>';
echo wpautop($field['textarea']);
echo '<p><img src="' . $field['image'] . '" alt="" /></p>';
}
}
?>