Hi,
In product-details.tpl the features, when grouped, are generated inside a single <dd>
{block name='product_features'} {if $product.grouped_features} <section> <h3>{l s='Data sheet' d='Shop.Theme.Catalog'}</h3> <dl> {foreach from=$product.grouped_features item=feature} <dt>{$feature.name}</dt> <dd>{$feature.value|escape:'htmlall'|nl2br nofilter}</dd> {/foreach} </dl> </section> {/if} {/block}
I need to create somethink like the following (that of course doesn't work):
{if $product.grouped_features} <section> <h3>{l s='Data sheet' d='Shop.Theme.Catalog'}</h3> <dl> {foreach from=$product.grouped_features item=feature} <dt>{$feature.name}</dt> <dd>{foreach $feature.value}<span title="{$feature.value|replace:' ':'_'}">{$feature.value|escape:'htmlall'|nl2br nofilter}</span>{/foreach}</dd> {/foreach} </dl> </section> {/if}