Hi, here is the template
{if isset($catformstart)}
{$catformstart}
{$catdropdown}{$catbutton}
{$catformend}
{/if}
{if isset($pagecount) && $pagecount gt 1}
{$firstlink} {$prevlink} {$pagetext} {$curpage} {$oftext} {$pagecount} {$nextlink} {$lastlink}
{/if}
<table width="100%" class="summary-hierarchy">
{foreach from=$items item=entry}
{*
the summary template has access to custom fields via the $entry->fields hash
and to categories via the $entry->categories array of objects. Also
attribute information is available via $entry->attributes.
you should use the get_template_vars and the print_r modifier to see
what is available
*}
<tr>
<td style="padding-bottom:5px;">
<table width="100%">
<tr>
<td width="20%" align="center" class="produktbillede">
<a href="{$entry->detail_url}">
{if count($entry->fields)}
{foreach from=$entry->fields key='name' item='field'}
{if $field->name == 'varenummer'}
{if $field->value != ""}
{Gallery start="1" number="1" template="Fancybox" dir=$field->value}
{else}
{/if}
{/if}
{/foreach}
{/if}
</a>
</td>
<td style="vertical-align:top;" width="60%" align="left" class="produktbillede2">
<h3><a href="{$entry->detail_url}">{$entry->product_name}</a></h3>
</td>
<td style="vertical-align:top;" width="20%" align="right">
<h1>{$entry->price} kr.</h1>
{* include the cart *}
<div>
{cms_module module='Cart2' action='default' sku=$entry->sku}
</div>
</td>
</tr>
</table>
</td>
</tr>
{/foreach}
</table>
Where to put it ? and isent there any other program to place this template in, and see the results , that would be nice feature
