Hi,
I use k2 since a very long time and i have very strange problem with extrafields.
I use it to show extrafields on item.php without any problem.
I add this on top of page:
<?php
//convertArray to use ids as key
$extrafields = array();
foreach($this->item->extra_fields as $item)
{
$extrafields[$item->id] = $item->value;
}
?>
And where i want i add
<?php echo $this->item->extraFields->extrafieldsname->value; ?>
But i try to add it on category_item.php but i win to show name but not value.
This dosn't work:
<?php echo $this->item->extraFields->extrafieldsname->value; ?>
This work:
<?php echo $this->item->extraFields->extrafieldsname->name; ?>
You know why i can't show value of extrafields?
Thank's for your help