I did add the QR code in InvoicePlane_web code, but I would like to make it disappear when the amount is zero.
I was thinking about a php function to not display that part of the code when the amount is smaller than zero?
I did add the QR code in InvoicePlane_web code, but I would like to make it disappear when the amount is zero.
I was thinking about a php function to not display that part of the code when the amount is smaller than zero?
From one of the PR’s:
<?php if (get_setting('qr_code') && $invoice->invoice_balance > 0) : ?>
Thanks, that’s excellent!