My product has several fields but I don't want ALL of the fields showing in the Detail Template. Currently have:
Code: Select all
{* accessing all of the fields in a list*}
{if isset($entry->fields) && count($entry->fields)}
{foreach from=$entry->fields key='name' item='field'}
<div class="product_detail_field">
<p>
<b>{$Products->Lang}{$name}:</b>{$Products->lang}{$field->value}<br/>
</p>
</div>
{/foreach}
{/if}How do I call only the fields I want so they can be listed in the order I want.
Thanks


