Hello,
I would like to display certain product features (based on ID) in Backend -> Orders -> individual order (Where the product line is shown): https://prnt.sc/prbxfh.
I have tried with this, but the result is empty (Included in file 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}