Hej
znalzłem darmowy moduł do grupowania cech
http://code.google.com/p/prestashop-grouped-features/wszystko fajnie na stronie produktu bo działa super wyświetla wszystko OK ale przy porównaniach wyświetla tylko listę cech (pogrupowanych ok) ale nie wyświetla wartości
założyłem ticketa u twórcy ale niestety nie odpisał jeszcze ;(
dlatego pytanie - co w tym kodzie będize brakowało:
{if $ordered_features}
{* Added by module for grouped features *}
{foreach from=$ordered_features item=group}
<tr><td colspan="{$products|@count+1}"> {$group.name}</td></tr>
{foreach from=$group.features item=feature}
<tr>
{cycle values='comparison_feature_odd,comparison_feature_even' assign='classname'}
<td class="{$classname}" style="padding-left: 10px">
{$feature.name|escape:'htmlall':'UTF-8'}
</td>
{foreach from=$products item=product name=for_products}
{assign var='product_id' value=$product->id}
{assign var='feature_id' value=$feature.id_feature}
{if isset($product_features[$product_id])}
{assign var='tab' value=$product_features[$product_id]}
{/if}
<td width="{$width}%" class="{$classname} comparison_infos">
{if isset($tab[$feature_id])}{$tab[$feature_id]|escape:'htmlall':'UTF-8'}{/if}</td>
{/foreach}
</tr>
{/foreach} {* feature loop *}
{/foreach} {* group loop *}
{else}
<tr>
<td></td>
<td colspan="{$products|@count + 1}">{l s='No features to compare'}</td>
</tr>
{/if}
{$HOOK_EXTRA_PRODUCT_COMPARISON}
pytanie czy to nie będize w jakiś sposób związane z tym, że używam 1.4.4.1 a nie nowszej wersji PS?