I'm trying to pull a customised version of modules/Extra_Fields/product.tpl.
Here is the code...
Quote:
{* $Id: product.tpl,v 1.7 2004/05/28 12:21:07 max Exp $ *}
{section name=field loop=$extra_fields}
{if $extra_fields[field].active eq "Y" && $extra_fields[field].field_value}
{$extra_fields[field].field_value}
{/if}
{/section}
|
I am managing to call it in a customised version of skin1/customer/main/product.tpl without any hassle.
The problem I do have is that when it calls it displays ALL extra fields and I only want it to display 1.
Field name : RunningTime
Field no. : 4
I have tried all sorts of configurations but I can't get it to work. Anybody know what I should be doing?