Absolutely nothing I've tried works. Any idea on how I need to write it?
I've tried things like
Code: Select all
{$entry->customnamehere}
Code: Select all
{$entry->customnamehere}
Code: Select all
{$entry->fields|print_r}
Code: Select all
{foreach from=$items item=entry}
{assign var='field' value=$entry->fields}
{foreach from=$field item=thisfield}
{assign var=$thisfield->name value=$thisfield->value}
{/foreach}
{$customnamehere}
{/foreach}
Thanks porridj - that was exactly what I was looking for.porridj wrote: {$entry->fields.Brand->value}
{$entry->fields.FIELDNAMEHERE->value}
try that... i think it works (it works for me and im pretty sure thats what your after!)
saved me i was looking for ages.