E
Asked
Hello since we issue receipt on every sale we have realized we use alot of papers is it possible to have a receipt like the sample below...in one line to have
- MSAnsweredHello,
There is no option unless you modify the view file as you need.
For web printing the view file `themes/default/admin/views/pos/view.php` can be modified as you need.
For POS Printer, you can try to edit the `themes/default/admin/views/pos/view.php` around line no 471
```
<?php include 'remote_printing.php'; ?>
```
and replace it with
```
<?php include 'remote_printing2.php'; ?>
```
If you need to modify the receipt view directly then `themes/default/admin/views/pos/remote_printing.php` or `themes/default/admin/views/pos/remote_printing2.php` as per your include can edited as you need.
Thank you - Login to Reply