Hi,
The view override is in the menu "HikaShop > Display > Views".
www.hikashop.com/support/documentation/i...op-view-listing.html
www.hikashop.com/support/documentation/i...ashop-view-form.html
www.hikashop.com/support/support/documen...-display.html#layout
The "order | invoice" view is displayed in the backend for the administrators, so you have to look at the backend views.
In the front-end, the order can be displayed but the view is "order | show".
View overrides are not very difficult and if made a mistake you can simply remove your override to retrieve the original file.
You have to know where in the HTML you want to put your text and some something like
<?php echo JText::_('MY_INVOICE_EXTRA_TEXT'); ?>
Thanks to it, you will use the translation system and you will be able to change your text in the HikaShop translation (in the override part it will be better).
MY_INVOICE_EXTRA_TEXT="Some extra text for my invoice override"
Modifying the text in your invoice will become easier because you won't have to modify the view, just change the translation as you want.
We will see to add some extra text in the invoice footer. By default the translation will be empty but you have the possibility to override it.
Language override is easier than view override (even if the view override is not very complicated but I understand that it can be frightening).
Regards,