Hello,
How can i display the product tags inside order details page for each product ?
Thanks,
Kyle.
Hello,
How can i display the product tags inside order details page for each product ?
Thanks,
Kyle.
Do you mean order details in admin or store-front or e-mail?
Hi eComLabs,
The admin panel (Orders > View Orders > Order #1010 for example). Inside each order details page, i want to display the product tags somewhere. Can you please help ?
Thanks.
Template is located here
design/backend/templates/views/orders/details.tpl
In the table of order items use something like
{if $addons.tags.status == 'A'} {$params = [ 'object_type' => 'P', 'object_id' => $oi.product_id ]} {$tags_data = $params|fn_get_tags} {if $tags_data.0} {foreach from=$tags_data.0 item="tag" name="tags"}
(!) Not tested