- MSAnsweredHello,
You can add the following rules to your header view file `themes/default/admin/views/header.php`
```html
<style>
.bcimg { display: none; } /* to hide barcode image */
.qrimg { display: none; } /* to hide qrcode image */
</style>
```
Thank you - EHAnswered**[Mian Saleem](/u/saleem)** Does it matter where i put the code ?
- EHAnsweredWhen the invoice is printed, it still show the qr and barcode image.
- MSAnsweredHello,
I think, No. But you should add it before clsoing the head tag `</head>`
Thank you - MSAnsweredHello,
If you have added the code, it should not show the barcde and qrcode images. Please double check.
Thank you - EHAnswered**[Mian Saleem](/u/saleem)** That will make it not showing anywhere right ? Or can i just make it for not to show when printing the recipt at POS mode.
- MSAnsweredHello,
Yes, that will not print it from all pages.
If you need it from receipt only then you only apply those to `#receiptData` like
```html
<style>
#receiptData .bcimg { display: none; } /* to hide barcode image */
#receiptData .qrimg { display: none; } /* to hide qrcode image */
</style>
```
Thank you - Login to Reply