我想在后端->订单->单个订单(显示产品线的地方)中显示某些产品功能(基于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}