Re: Can't get extra fields to show in other places
Wanted to show extra field Pack in the product list, Xcart 4.5
Edited the file products_list.tpl in
skin/ideal_comfort/customer/main/
added the code right after this code -
{if $config.Appearance.display_productcode_in_list eq "Y" and $product.productcode ne ""}
<div class="sku">{$lng.lbl_sku}: <span class="sku-value">{$product.productcode|escape}</span></div>
{/if}
Here is the code that I used -
Pack: {$product.extra_fields[2].field_value}
{foreach from=$product.extra_fields item=v}
{if $v.active eq "Y" && $v.value ne ""}
{if $v.field eq "Pack"}
{$v.value}
{/if}{/if}
{/foreach}
Thanks for your help -
|