Using the latest versions of the cg e-commerce suite and CMSMS.
Here's my summary template.
Code: Select all
<div class="products-detail">
<h1>{$entry->product_name}</h1>
<img align="center" src="{$entry->file_location}/{$entry->fields.prodimage->value}" alt="{$entry->product_name}"/>
<div><p>{$entry->details}</p></div>
{* print out attributes *}
{if isset($entry->attributes)}
{foreach from=$entry->attributes key='name' item='attribset'}
<p><strong>{$name}:</strong>
{foreach from=$attribset key='label' item='adjustment'}
{$label} ({$currency_symbol}{$adjustment}),
{/foreach}
</p>
<p><b>Price: {$currency_symbol}{$entry->price}</b></p>
{/foreach}
{/if}
{* include the cart *}
{cgecomm_form_addtocart product=$entry->id}
</div>