I had a costumer return something. I made a credit invoice (?) (order-slip). I noticed that there is no shop address on it like on the normal invoice. So i looked into the order-slip.tpl and i wonder what {$addresses_tab} points to, as there is no order-slip.addresses-tab.tpl.
I was assuming it is directing to invoice.addresses-tab.tpl. EDIT: found out this is the case in HTMLTemplateOrderSlip.php
Which has the following 2 lines:
{if isset($order_invoice)}{$order_invoice->shop_address}{/if} --> Shows the shop address in the invoice but not in the order slip
{if isset($free_text)}{$free_text|escape:'html':'UTF-8'}{/if} --> Shows extra info that i wanted there in both the invoice and the order slip
Am i correct that it points to this and if so how can i change it to get the shop_address to also show on the order-slip.
(Also looking for more info how to edit the pdf files in general)