How To Display A Product Feature On Admin Order Page

I need to display a certain feature of the product on the order page, in admin (Orders), where the product SKU now appears (I need it to be displayed next to the product SKU). I have cs cart 4.13.2. Can you help me, please?

Thank you!

Product features are not stored in the order data. You should make additional requests to database to retrieve necessary data

Product features are not stored in the order data. You should make additional requests to database to retrieve necessary data

I'm aware of that. I think that depending on the product id and the featured_id it can be introduced. The problem is that I don't know how to make the call. Product ID takes it from the order ... featured_id I know it, so I'm just missing the lines of code. :).
Thanks for the reply!

Product features are not stored in the order data. You should make additional requests to database to retrieve necessary data

If you can help me with the necessary lines of code I will remain grateful. If it's something more complex to do, can you tell me how much it would cost to solve?
Thanks!
I found something that brings me features (all features) on the order page.
Looks like this:
____
{foreach from=$oi.features item="product_feature"}
{$product_feature.description}:
{if $product_feature.variant} {$product_feature.variant} {/if}
{if $product_feature.value} {$product_feature.value} {/if}

{/foreach}
_________
But I only need it to show me a certain feature (eg feature_id = '34'.
How can I make only this feature be displayed?
Thanks!

Try to use the following condition

{if $product_feature.feature_id == 34}
    {if $product_feature.variant} {$product_feature.variant} {/if}
    {if $product_feature.value} {$product_feature.value} {/if}
{/if}

Try to use the following condition

{if $product_feature.feature_id == 34}
    {if $product_feature.variant} {$product_feature.variant} {/if}
    {if $product_feature.value} {$product_feature.value} {/if}
{/if}

Works like a charm!

Thank you very much for your help!

Good day

Where do should we paste the code above? I have a similar problem. I want to add the list of features to my invoice and order confirmation.

Thank you