Hi Fotis,
I've tried copying the foreach loop in to the Item are but it just generates the empty UL tags wrapped around it.
I found this other post from a while ago that suggests the extra fields may not be available in this file by default -
www.joomlaworks.net/forum/k2-en/41072-how-to-access-extra-fields-in-author-view#143072
I've added that code and will print the array of extra fields listed by their field id, but that's not exactly what I was after.
I'm trying to build a more complex layout using some queries on my extra fields such as:
<?php if(isset($item->extraFields->productionCompany->value)): ?>
<div class="abr-home-production-company"><?php echo $item->extraFields->productionCompany->value; ?></div>
<?php endif; ?>
Is that possible or will I have to query the fields by ID?
Thanks
Nathan