prestashop:如果产品具有属性,如何显示产品的附件?

时间:2015-12-16 06:45:20

标签: smarty

在product.tpl中,代码需要一些更有效的条件。

{if $features}
<section class="page_product_box toggle_frame datasheet" style="display:none;">
    <h3 class="toggle">{l s='Data sheet'}<i class="icon-toggle icon-minus-sign-alt"></i></h3>
    <div class="features">
                              {if isset($features) && $features}
                                    {foreach from=$features item=feature}

                               <div id="feature-icon"><img class="feature" title="{$feature.detail}" src="{$img_ps_dir}f/{$feature["id_feature"]}.jpg" width="65" height="65"/></div>                                       
                                    {/foreach}
    </div>

</section>
{/if}

0 个答案:

没有答案