在管理订单中显示产品功能-产品线

时间:2019-11-02 16:41:55

标签: prestashop

我想在后端->订单->单个订单(显示产品线的地方)中显示某些产品功能(基于ID):https://prnt.sc/prbxfh

我使用的Prestashop版本是1.6.1.9。

我已经尝试过,但是结果为空(包含在文件admin \ themes \ default \ template \ controllers \ orders_product_line.tpl中):

{if isset($features) && $features}
    {foreach from=$features item=feature}
        {if $feature.id_feature == 19}
            <span>{$feature.name|escape:'html':'UTF-8'}</span>: <span>{$feature.value|escape:'html':'UTF-8'}</span>
        {/if}
     {/foreach}
 {/if}

0 个答案:

没有答案