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!
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
Product features are not stored in the order data. You should make additional requests to database to retrieve necessary data
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