Show Payment Process Transaction Id On The Order Details Page

I am trying to figure out how to add the payment process transaction id on the order.details page? On the backend, when I click on Orders > View Orders, and click a particular order, I would like my customer service reps to see the transaction ID somewhere near the credit card information.

I have found this really helps speed up the process when they need to find the order quickly in the virtual terminal the processor uses.

Any help would be greatly appreciated!

Thank you,

Jake

design/themes/YOUR_THEME/templates/views/orders/details.tpl

add somewhere

                    {if $order_info.payment_info}
                        {foreach from=$order_info.payment_info item=item key=key}
                        
{if $item && $key == "transaction_id"}
{__($key)}
{$item}
{/if}
{/foreach} {/if}

Then clear cache

@eComLabs..thank you