Question: Disable Barcode And Qrcode

Disable Barcode And Qrcode

Can i disable the bardoce/qr code when printing invoice in POS mode ?

EH

Einnlleinhatt Ha

Asked
Can i disable the bardoce/qr code when printing invoice in POS mode ?
  • MS

    Mian Saleem

    Answered
    Hello,

    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
  • EH

    Einnlleinhatt Ha

    Answered
    **[Mian Saleem](/u/saleem)** Does it matter where i put the code ?
  • EH

    Einnlleinhatt Ha

    Answered
    When the invoice is printed, it still show the qr and barcode image.
  • MS

    Mian Saleem

    Answered
    Hello,

    I think, No. But you should add it before clsoing the head tag `</head>`

    Thank you
  • MS

    Mian Saleem

    Answered
    Hello,

    If you have added the code, it should not show the barcde and qrcode images. Please double check.

    Thank you
  • EH

    Einnlleinhatt Ha

    Answered
    **[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.
  • MS

    Mian Saleem

    Answered
    Hello,

    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