A custom field formatter lists the children, linked of terms:
case 'feature_taxonomy_list_children':
$topics = taxonomy_get_children($entity->tid);
foreach ($topics as $delta => $topic) {
$element[$delta] = array(
'#type' => 'link',
'#title' => t($topic->name),
'#href' => '/taxonomy/term/' . $topic->tid,
// How to use this module?
'field_delimiter' => 'br',
);
}
break;
(How) can I use this module to change the delimiter to newline instead of comma separated?
Closed: outdated
1.2
Documentation
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.