CMS Made Simple how to insert an image into a news item?
1. create an additional field in news, for example 'image' - type file
2. be sure to check the "global" checkbox
3. in the summary (short news) template, output this image
{foreach from=$entry->fields item='field'}
{if $field->type == 'file' && $field->name == 'картинка' && $field->value != ''}
{/if}
{/foreach}
Comments