Hello there,
i found the multi level fields data very useful but i have a little problem.
I use to create custom category and item views and i display the desired extra fields with the following code
<?php $extrafields = array();
foreach($this->item->extra_fields as $item) {
$extrafields[$item->id] = $item->value;
} ?>
<?php echo $extrafields[10];?>
And like this i display only the desired field and not all of them in my custom view
Now if i use the multi level feature, the above code dont show the desired extra field even if i insert the right extra field id.
Is there any way to overcome this?
Thanks in advance.