You must be logged in to see replies to this topic. Click here to login or register
Home › Forums › Plugins › WebPOS – WooCommerce POS – Point of Sale › Default Printer
1. Under WooCommerce > Orders, the Print Receipt button is not using the default template we set under WebPOS setting. I think it is using the first available that is enabled.
2. Also, printing from Chrome to a thermal printer, results in a very bad quality print.
The solution to this problem is to set font “color:black” in your stylesheet, eg:
@media print {
html, body {
color: black;
}
}
— or —
<style rel=”stylesheet” media=”print”>
body {color:black;}
</style>
https://stackoverflow.com/questions/27203571/receipt-printing-in-chrome-bad-quality
You must be logged in to see replies to this topic. Click here to login or register