Closed (outdated)
Project:
Event
Version:
6.x-2.x-dev
Component:
Code
Priority:
Critical
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
29 Aug 2008 at 06:24 UTC
Updated:
13 Apr 2018 at 21:01 UTC
Jump to comment: Most recent
Comments
Comment #1
jschoder commentedI would also need this
Comment #2
dbell154 commented// Change to event.module for hierarchial dropdown in display
From:
foreach ($tree as $term) {
$items[$term->tid] = $vocab->name .' - '. $term->name;
}
To:
foreach ($tree as $term) {
$dash = '';
while ($term->depth--) {
$dash .= '-';
}
$items[$term->tid] = $dash . $term->name;
}
You'll have to arrange the categories the way you want it.
This just displays them the way they are categorized, like in Create Event.
Main
-Sub Category
--Sub Sub
Comment #3
japerryEvent for Drupal 8 is unrelated to older versions. If an issue similar to this one exists, please open a new issue with the 8.x branch.