In products module you can add custom fields on page "Field Definitions" and after that i retrive them in my detail template with
Code: Select all
{foreach from=$entry->fields item='onefield'}
{if $onefield->name == 'transport'}
{if $onefield->value ne ''}<li>{$mod->Lang('transport')}{$name}<strong>{$onefield->value}</strong></li>{/if}{/if}{/foreach}
Code: Select all
{Products pagelimit="30" lang="ru_RU"}
Is there a function on language file somthing like
Code: Select all
$lang['sity']['area'] = 'areositie';
Please help