Removed the body field in nodes of type person

This commit is contained in:
Manuel Cillero 2017-10-10 20:01:34 +02:00
parent 55692f7fa4
commit 6e1858d531
3 changed files with 2 additions and 15 deletions

View file

@ -109,14 +109,5 @@ function theme_stormperson_view($node, $teaser = FALSE, $page = FALSE) {
);
}
# $node->content['body_field'] = array(
# '#prefix' => '<div class="stormbody">',
# '#suffix' => '</div>',
# '#value' => theme('storm_view_item', t('Description'), $node->content['body']['#value']),
# '#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'body_field') : -18,
# );
unset($node->content['body']);
return $node;
}