Need To Add Product Name In Manage.tpl

Im trying to get the product name for each order in backend manage.tpl, anyone can point me on the rigth direction please.

My idea is to show each product name after price. I attach an image to clarify.

Best Regards

Jema

- Enable the My changes module

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_header.post.tpl

Content:

{__('products')}

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_data.post.tpl

Content:

    {$o_info = $o.order_id|fn_get_order_info}
    {foreach from=$o_info.products item=oi}
        

{$oi.product}

{/foreach}

- Clear cache and check the result

This addon does pretty much this

https://store.cart-power.com/cs-cart-extended-orders-info-add-on.html

Also there is feature called "view purchased products", you must be in

admin.php?dispatch=orders.manage

select few order, on right drop down menu pick "view purchased products"

- Enable the My changes module

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_header.post.tpl

Content:

{__('products')}

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_data.post.tpl

Content:

    {$o_info = $o.order_id|fn_get_order_info}
    {foreach from=$o_info.products item=oi}
        

{$oi.product}

{/foreach}

- Clear cache and check the result

Hi, first of all, thanks for the fast reply eComLabs!
I have My_Changes addon Activated, and added the 2 files on current directories.
design/backend/templates/addons/my_changes/hooks/products/manage_header.post.tpl
and
design/backend/templates/addons/my_changes/hooks/products/manage_data.post.tpl
Im not familiarizated with hooks, how i get product name of each orders showed in manage.tpl ?
Im trying adding on it
{$oi.product}
but isnt working.
I have to add any extra php in hook dir?
Best regards
JEMA

What eComLabs provided should already do what you wanted.

Have you cleared the cache and check if the product name appeared?

Hi exelorien, Yes, i figure out how to call the hook in manage.tpl :) Thanks


- Enable the My changes module

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_header.post.tpl

Content:

{__('products')}

- Create the following file:

design/backend/templates/addons/my_changes/hooks/products/manage_data.post.tpl

Content:

    {$o_info = $o.order_id|fn_get_order_info}
    {foreach from=$o_info.products item=oi}
        

{$oi.product}

{/foreach}

- Clear cache and check the result

Thanks a lot eComLabs, work like a charm. I just forget to call the hook in the tpl :)

Thanks agian and happy New Year !

Nice! I work for 1 month with cs and it has a lot of sections that I am still not even aware of! Have a nice day :)

You are welcome, guys. Happy New Year!